可以在 JavaScript 中创建三种消息框:警告框、确认框、提示框。
1.警告框:
警告框经常用于确保用户可以得到某些信息。
当警告框出现后,用户需要点击确定按钮才能继续进行操作。
语法是:
alert("文本")
<html>
<head>
<script type="text/javascript">
function dispalert()
{
alert("这是警告框!!")
}
</script>
</head>
<body>
<input type="button" οnclick="dispalert()" value="显示警告框" />
</body>
</html>
2.确认框
确认框用于使用户可以验证或者接受某些信息。
当确认框出现后,用户需要点击确定或者取消按钮才能继续进行操作。
如果用户点击确认,那么返回值为 true。如果用户点击取消,那么返回值为 false。
语法是:
confirm("文本")
<html>
<head>
<script type="text/javascript">
function showconfirm()
{
var r=confirm("Please press a button!");
if (r==true)
{
alert("You pressed OK!");
}
else
{
alert("You pressed Cancel!");
}
}
</script>
</head>
<body>
<input type="button" οnclick="showconfirm()" value="click me" />
</body>
</html>
3.提示框
提示框经常用于提示用户在进入页面前输入某个值。
当提示框出现后,用户需要输入某个值,然后点击确认或取消按钮才能继续操纵。
如果用户点击确认,那么返回值为输入的值。如果用户点击取消,那么返回值为 null。
语法是:
prompt("文本","默认值")
完整代码如下:
<html>
<head>
<script type="text/javascript">
function dispprompt()
{
var name=prompt("请输入您的名字","lebron james")
if (name!=null && name!="")
{
document.write("hello!" + name + " ,how are you?")
}
}
</script>
</head>
<body>
<input type="button" οnclick="dispprompt()" value="click me" />
</body>
</html>
以上代码建议在火狐或chrome浏览器上实现。