$(document). ready(function() {
alert("clicked");
});
OK
如何使用 jquery检查是否单击了警报。我知道如何使用提示或确认
$(document). ready(function() {
alert("clicked");
});
OK
如何使用 jquery检查是否单击了警报。我知道如何使用提示或确认
只需将代码放在alert
调用后:
$(document). ready(function() {
alert("clicked");
// code here is executed after the `alert` dialog was dismissed
});
这是有效的,因为alert
(就像confirm
or一样prompt
)阻止JS 执行。
您无法区分OK
是单击了还是刚刚关闭了对话框。
$(document). ready(function() {
alert("clicked"); //first ok
alert("click has been detected") //alert to detect the first ok
});