带有两个提交按钮的表单,第一个提交按钮使用 method="get" 提交表单数据,第二个提交按钮使用 method="post" 提交表单数据:
运行一下 »<form action="demo_form.html" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<button type="submit">Submit</button>
<button type="submit" formmethod="post" formaction="demo_post.html">
Submit using POST</button>
</form>
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formmethod 属性。
注意:Internet Explorer 9 及更早IE版本不支持 formmethod 属性。
formmethod 属性制定发送表单数据使用的 HTTP 方法。formmethod 属性覆盖 form 元素的 method 属性。
formmethod 属性需与 type="submit" 配合使用。
可以通过以下方式发送 form-data :
使用 "get" 方法:
使用 "post" 方法:
formmethod 属性是 HTML 5 中的新属性。
<button type="submit" formmethod="get|post">
值 | 描述 |
---|---|
get | 向 URL 追加表单数据(form-data):URL?name=value&name=value |
post | 以 HTTP post 事务的形式发送表单数据(form-data) |