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>