Javascript警报按钮确定按钮

时间:2014-11-20 02:17:03

标签: javascript

我想问一下javascript警告按钮 单击警告按钮上的确定按钮后,是否可以执行任何操作(例如:重定向,清除表单)?

2 个答案:

答案 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窗口一样,它会暂停程序/脚本执行,直到用户做出决定