使用“get”方法提交表单:
<form action="/action_page.php" method="get"> <label for="fname">名:</label> <input type="text" id="fname" name="fname"><br> <label for="lname">姓:</label> <input type="text" id="lname" name="lname"><br> <input type="submit" value="提交"> </form>
method
属性指定如何发送表单数据(表单数据被发送到 action
属性中指定的页面)。
表单数据可以作为 URL 变量(使用 method="get"
)或作为 HTTP 发布事务(使用 method="post"
)发送。
关于 GET 的注意事项:
关于 POST 的注意事项:
属性 Attribute | |||||
---|---|---|---|---|---|
method | Yes | Yes | Yes | Yes | Yes |
<form method="get|post">
值 Value | 描述 Description |
---|---|
get | 默认。 以名称/值对的形式将表单数据附加到 URL: URL?name=value&name=value |
post | 将表单数据作为 HTTP 发布事务发送 |
使用“post”方法提交表单:
<form action="/action_page.php" method="post"> <label for="fname">名:</label> <input type="text" id="fname" name="fname"><br> <label for="lname">姓:</label> <input type="text" id="lname" name="lname"><br> <input type="submit" value="提交"> </form>