method
属性指定如何发送表单数据(表单数据被发送到 action
属性中指定的页面)。
表单数据可以作为 URL 变量(使用 method="get"
)或作为 HTTP 发布事务(使用 method="post"
)发送。
关于 GET 的注意事项:
关于 POST 的注意事项:
method
属性可用于以下元素:
元素 Element | 属性 Attribute |
---|---|
<form> | method |
使用“get”方法提交表单:
<form action="/action_page.php" method="get"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="Submit"> </form>
属性 Attribute | |||||
---|---|---|---|---|---|
method | Yes | Yes | Yes | Yes | Yes |