JsDemo

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4 <script language="javascript">
 5         
 6     function byebye(){alert("混蛋,吃了豹子胆了,敢按我!");}
 7 </script>
 8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 9 <title>javaScript中的事件</title>
10 </head>
11 <body  onunload="byebye()">
12 <h3><a href="#" onclick="click()">按我吧!兄弟,按我吧!</a> </h3>
13 </body>
14 </html>
原文地址:https://www.cnblogs.com/alamps/p/2257616.html