标签:
1.警告框
function myTest(){ alert("这里的内容会弹出"); }
2.确认框
其返回的值是 true 或 false 。
function myTest(){ confirm("这里的内容会弹出"); }
3.提示框 prompt
prompt(参数1,参数2):其参数1 是显示提示要输入的信息,参数2 用于显示输入框的默认值。例如:
function myTest(){ prompt("这是一个输入框","我是默认值哦"); }
标签:
原文地址:http://www.cnblogs.com/jiejie95/p/4969914.html