如何创建具有“确定”和“取消”选项的对话框

2022-08-29 22:25:22

我将创建一个按钮来执行操作并将数据保存到数据库中。

一旦用户点击按钮,我希望JavaScript警报提供“是”和“取消”选项。如果用户选择“是”,则数据将插入到数据库中,否则将不执行任何操作。

如何显示这样的对话框?


答案 1

您可能正在寻找 confirm(),它显示提示并返回或基于用户决定的内容:truefalse

if (confirm('Are you sure you want to save this thing into the database?')) {
  // Save it!
  console.log('Thing was saved to the database.');
} else {
  // Do nothing!
  console.log('Thing was not saved to the database.');
}

答案 2
var answer = window.confirm("Save data?");
if (answer) {
    //some code
}
else {
    //some code
}

使用代替警报。这是实现该功能的最简单方法。window.confirm