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