head 部分

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function message()
  5. {
  6. alert("该提示框是通过 onload 事件调用的。")
  7. }
  8. </script>
  9. </head>
  10.  
  11. <body onload="message()">
  12.  
  13. </body>
  14. </html>