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

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

4

2 回答 2

8

只需将代码放在alert调用后:

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

这是有效的,因为alert(就像confirmor一样prompt阻止JS 执行。

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

于 2013-08-07T12:14:57.070 回答
0
$(document). ready(function() {
    alert("clicked"); //first ok 
    alert("click has been detected") //alert to detect the first ok
});
于 2013-08-07T12:16:16.323 回答