举例说明表单标签form
时间: 2023-07-06 18:11:02 浏览: 100
好的,以下是一个简单的表单示例:
```
<form action="submit.php" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username"><br><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password"><br><br>
<label for="gender">性别:</label>
<input type="radio" id="male" name="gender" value="male">
<label for="male">男</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">女</label><br><br>
<label for="city">城市:</label>
<select id="city" name="city">
<option value="beijing">北京</option>
<option value="shanghai">上海</option>
<option value="guangzhou">广州</option>
<option value="shenzhen">深圳</option>
</select><br><br>
<label for="message">留言:</label><br>
<textarea id="message" name="message" rows="5" cols="50"></textarea><br><br>
<input type="submit" value="提交">
</form>
```
在上面的示例中,我们使用了form标签来创建一个表单,其中:
- action属性指定了表单提交到的目标URL为submit.php;
- method属性指定了提交表单时使用的HTTP请求方法为POST;
- label标签为表单元素添加了标记,使得用户点击标记时可以选中相应的表单元素;
- input标签用于创建文本框和单选框;
- select标签用于创建下拉框;
- textarea标签用于创建文本域;
- input标签的type属性为submit,表示创建一个提交按钮。
当用户填写完表单后,点击提交按钮,表单数据将会被打包成HTTP请求发送到服务器上的submit.php文件进行处理。
阅读全文