HTML DOM alert() 方法
JavaScript基础 2022-06-08 14:58:48小码哥的IT人生shichen
HTML DOM alert() 方法
定义和用法
alert() 方法用于显示带有一条指定消息和一个 OK 按钮的警告框。
语法
alert(message)
参数 | 描述 |
---|---|
message | 要在 window 上弹出的对话框中显示的纯文本(而非 HTML 文本) |
实例
<html>
<head>
<script type="text/javascript">
function display_alert()
{
alert("I am an alert box!!")
}
</script>
</head>
<body>
<input type="button" onclick="display_alert()"
value="Display alert box" />
</body>
</html>
TIY
完整实例【显示一个对话框】:
<html>
<head>
<script type="text/javascript">
function disp_alert()
{
alert("我是一个消息框!")
}
</script>
</head>
<body>
<input type="button" onclick="disp_alert()" value="显示消息框" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
完整实例【显示带有折行的对话框】:
<html>
<head>
<script type="text/javascript">
function disp_alert()
{
alert("再打个招呼。这里演示了" + "n" + "如何在消息框中添加折行。")
}
</script>
</head>
<body>
<input type="button" onclick="disp_alert()" value="显示消息框" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html