我将要做出一个按钮来采取行动,并将数据保存到数据库中。
用户单击按钮后,我希望JavaScript警报提供“是”和“取消”选项。如果用户选择“是”,则数据将被插入数据库,否则将不执行任何操作。
如何显示这样的对话框?
您可能正在寻找confirm(),显示提示并根据用户的决定返回true或false:
confirm()
true
false
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.'); }