调试运行
<html> <head> <title>单击按钮时调用函数</title> <script language="javascript"> <!-- function fun(){ alert("这是单击按钮后执行的函数!"); } //--> </script> </head> <body> <input type="button" value="单击我" onClick="fun()"> </body> </html>