系统对话框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

posted @ 2020-04-06 17:29  花木兰r  阅读(115)  评论(0编辑  收藏  举报