检查是否使用jquery单击了警报

时间:2013-08-07 12:13:24

标签: jquery

$(document). ready(function() {
alert("clicked");
});

如何使用jquery检查是否单击了OK警报。我知道如何使用提示或确认

2 个答案:

答案 0 :(得分:8)

只需将代码放在alert来电之后:

$(document). ready(function() {
    alert("clicked");
    // code here is executed after the `alert` dialog was dismissed
});

这是有效的,因为alert(就像confirmprompt阻止 JS执行。

无论是单击OK还是刚刚关闭对话框,您都无法区分。

答案 1 :(得分:0)

$(document). ready(function() {
    alert("clicked"); //first ok 
    alert("click has been detected") //alert to detect the first ok
});