第二个提交按钮覆盖表单的 HTTP 方法:
<form action="/action_page.php" method="get"> <label for="fname">名:</label> <input type="text" id="fname" name="fname"><br><br> <label for="lname">姓:</label> <input type="text" id="lname" name="lname"><br><br> <input type="submit" value="提交"> <input type="submit" formmethod="post" value="使用 POST 提交"> </form>
formmethod
属性定义了将表单数据发送到操作 URL 的 HTTP 方法。
formmethod
属性覆盖了 <form>
元素的 method
属性。
注意: formmethod
属性可以与 type="submit"
和 type="image"
一起使用。
表单数据可以作为 URL 变量(method="get"
)或作为 HTTP post 事务(method="post"
)发送。
关于“get”方法的注意事项:
关于“post”方法的注意事项:
表中的数字指定了完全支持该属性的第一个浏览器版本。
属性 Attribute | |||||
---|---|---|---|---|---|
formmethod | Yes | 10.0 | Yes | 5.1 | 10.6 |
<input formmethod="get|post">
值 Value | 描述 Description |
---|---|
get | 默认。 以名称/ 值对的形式将表单数据附加到 URL: URL?name=value&name=value |
post | 将表单数据作为 HTTP 发布事务发送 |