HTML DOM alert() 方法

HTML DOM Window 对象参考手册 HTML DOM Window 对象参考手册


定义和用法

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>

显示一个对话框

显示带有折行的对话框



HTML DOM Window 对象参考手册 HTML DOM Window 对象参考手册

粤ICP备11097351号-1