javascript学习笔记(十六)系统对话框
来源:岁月联盟
时间:2012-06-04
1.警告框alert()
alert("欢迎光临!");
2.信息框confirm(),有取消,确定按钮
1 if (confirm("你同意吗?")) {
2 alert("同意");
3 } else {
4 alert("不同意");
5 }
3.提示框prompt(),用于提示用户输入一些文本
1 var result = prompt("您尊姓大名?"," ");
2 if (result !== null) {
3 alert(“欢迎光临,”+result);
4 }
摘自 晴天漫步