系统对话框alert-prompt-confirm

box.onclick = function () {
alert('hello world');
}  无返回值

box.onclick = function () {
// 弹出提示,让用户输入内容
var userName = prompt('请输入姓名', '张三');
console.log(userName);
}  返回boolean

box.onclick = function () {
var isSure = confirm('是否要删除数据?');
console.log(isSure);
}      返回字符串或者null

原文地址:https://www.cnblogs.com/pxxdbk/p/12643042.html