HTML DOM method 属性
定义和用法
method 属性可设置或返回用于表单提交的 HTTP 方法。
语法
- formObject.method=get|post
实例
下面的例子弹出的对话框中显示了发送表单数据所使用的 HTTP 方法:
- <html>
- <head>
- <script type="text/javascript">
- function showMethod()
- {
- var x=document.getElementById("myForm")
- alert(
x.method
)- }
- </script>
- </head>
- <body>
- <form id="myForm" method="post">
- Name: <input type="text" size="20" value="Mickey Mouse" />
- <input type="button" onclick="showMethod()" value="Show method" />
- </form>
- </body>
- </html>