gpt4 book ai didi

javascript - 有没有办法捕获警报确定按钮单击事件?

转载 作者:数据小太阳 更新时间:2023-10-29 04:25:47 24 4
gpt4 key购买 nike

有没有办法捕获警报确定按钮单击事件?在 jQuery 中?

最佳答案

alert() 函数是同步 并且您无法验证点击了什么(它不返回任何内容),因此将执行调用下面的代码关闭后(确定或关闭按钮)。警报不用于获取用户输入。它是一个警报,是给用户的消息。如果你需要检查用户想要什么,你应该使用confirm()。请注意,函数名称说明了它的用途,如警报。

类似于:

// if the ok button is clicked, result will be true (boolean)
var result = confirm( "Do you want to do this?" );

if ( result ) {
// the user clicked ok
} else {
// the user clicked cancel or closed the confirm dialog.
}

关于javascript - 有没有办法捕获警报确定按钮单击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11640248/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com