我想问一下javascript警告按钮 单击警告按钮上的确定按钮后,是否可以执行任何操作(例如:重定向,清除表单)?
答案 0 :(得分:2)
您可以在警报后立即应用您的功能:
alert('something');//execution is halted until ok button is pressed
foo(); // calls the foo method after ok button is pressed
答案 1 :(得分:0)
您可以将alert
更改为使用confirm
窗口
var response = confirm('Are you sure you want to clear the form?');
if (response){
// clear the form
console.log('clearing the form approved');
}
confirm
窗口类似于alert
,但它显示确定和取消按钮。它会返回bool
结果,具体取决于用户的选择。
与alert
窗口一样,它会暂停程序/脚本执行,直到用户做出决定