form提交表单的具体方法
时间: 2023-10-08 19:08:49 浏览: 93
提交表单的步骤
表单的提交有两种方式:GET 和 POST。
1. GET方法:将表单数据附加在URL的后面,以问号(?)分隔URL和数据,多个数据之间用&连接。如下所示:
```
<form action="http://www.example.com/formhandler.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>
```
上述代码中,form标签的action属性指定了表单提交的URL,method属性指定了提交方式为GET。当用户点击Submit按钮时,将向"http://www.example.com/formhandler.php?fname=xxx&lname=xxx"发送请求,其中fname和lname分别是输入框中用户输入的值。
2. POST方法:将表单数据放在HTTP请求体中,不会在URL中显示。如下所示:
```
<form action="http://www.example.com/formhandler.php" method="post">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
```
上述代码中,form标签的action属性指定了表单提交的URL,method属性指定了提交方式为POST。当用户点击Submit按钮时,将向"http://www.example.com/formhandler.php"发送POST请求,请求体中包含fname和lname的值,但不会在URL中显示。
阅读全文