小编典典

如何创建带有“是”和“否”选项的对话框?

javascript

我将要做出一个按钮来采取行动,并将数据保存到数据库中。

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

如何显示这样的对话框?


阅读 401

收藏
2020-05-01

共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.');

}
2020-05-01