使用 "get" 方法来提交表单:
<form action="demo_form_method.php" method="get"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="提交"> </form>尝试一下 »
所有主流浏览器都支持 method 属性。
method 方法规定如何发送表单数据(form-data)(表单数据会被发送到在 action 属性中规定的页面中)。
表单数据可被作为 URL 变量的形式来发送(method="get")或者作为 HTTP post 事务的形式来发送(method="post")。
关于 GET 的注释:
关于 POST 的注释:
无。
<form method="get|post">
值 | 描述 |
---|---|
get | 默认。将表单数据(form-data)以名称/值对的形式附加到 URL 中:URL?name=value&name=value。 |
post | 以 HTTP post 事务的形式发送表单数据(form-data)。 |
使用 "post" 方法来提交表单
通过 "post" 方法来发送表单数据。
在线实例
字符集 & 工具
最新更新
站点信息
关注我们