带有参数的函数

  1. <html>
  2. <head>
  3.  
  4. <script type="text/javascript">
  5. function myfunction(txt)
  6. {
  7. alert(txt)
  8. }
  9. </script>
  10.  
  11. </head>
  12. <body>
  13.  
  14. <form>
  15. <input type="button" onclick="myfunction('您好!')" value="调用函数">
  16. </form>
  17.  
  18. <p>通过点击这个按钮,可以调用一个带参数的函数。该函数会输出这个参数。</p>
  19.  
  20. </body>
  21. </html>