jQuery 确认在 Chrome 中不起作用
我正在尝试创建一个基本的确认框,当用户单击链接时提示用户进行简单的确认/取消。
这在 FF 和 IE 中运行良好,但 Chrome 似乎忽略了它。
谁能明白为什么这可能不起作用?
//Confirm Duplication
$("a[href*=duplicate]").click(function(event){
var answer = confirm("Duplicate?")
if(!answer){
event.preventDefault();
}
});
任何建议表示赞赏。 谢谢。
I'm trying to create a basic confirmation box which prompts users with a simple confirm/cancel when they click on a link.
This is working fine in FF and IE, however Chrome just seems to ignore it.
Can anyone see why this might not be working?
//Confirm Duplication
$("a[href*=duplicate]").click(function(event){
var answer = confirm("Duplicate?")
if(!answer){
event.preventDefault();
}
});
Any advice appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够通过将初始 jquery 调用从 更改为 来解决类似的
问题
I was able to fix a similar issue by changing the initial jquery call from
to