html总结(3)

来源:互联网 发布:js object[] 编辑:程序博客网 时间:2024/06/06 20:44

html文件如下:

 <html>
 <head>
  <title>aa</title>
  <script type="text/javascript">
   function disp()
   {
    alert("hello");
   }
  </script>
 </head>
 <body>
  <input type="button" onclick="disp()" value="test"> </input>
 </body>
</html>