HTML DOM alert() 方法

定义和用法

alert() 方法用于显示带有一条指定消息和一个 OK 按钮的警告框。

语法

  1. alert(message)
参数 描述
message 要在 window 上弹出的对话框中显示的纯文本(而非 HTML 文本)

实例

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function display_alert()
  5. {
  6. alert("I am an alert box!!")
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <input type="button" onclick="display_alert()"
  13. value="Display alert box" />
  14.  
  15. </body>
  16. </html>