HTML DOM method 属性

定义和用法

method 属性可设置或返回用于表单提交的 HTTP 方法。

语法

  1. formObject.method=get|post

实例

下面的例子弹出的对话框中显示了发送表单数据所使用的 HTTP 方法:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function showMethod()
  5. {
  6. var x=document.getElementById("myForm")
  7. alert(x.method)
  8. }
  9. </script>
  10. </head>
  11. <body>
  12.  
  13. <form id="myForm" method="post">
  14. Name: <input type="text" size="20" value="Mickey Mouse" />
  15. <input type="button" onclick="showMethod()" value="Show method" />
  16. </form>
  17.  
  18. </body>
  19. </html>