创建一个用于填写用户资料的表单,要求表单内包含文本框、单选按钮、复选框、下拉式列表框及文本区域,并在提交表单后通过表格显示所提交的信息
时间: 2023-08-22 11:08:35 浏览: 76
好的,我可以为您提供一个基础的 HTML 表单代码,包含了您所要求的各种表单元素:
```html
<!DOCTYPE html>
<html>
<head>
<title>User Information Form</title>
</head>
<body>
<h2>User Information Form</h2>
<form action="submit.php" method="POST">
<label for="name">Name:</label>
<input type="text" name="name" id="name" required><br><br>
<label for="email">Email:</label>
<input type="email" name="email" id="email" required><br><br>
<label for="gender">Gender:</label><br>
<input type="radio" name="gender" value="male" id="male">
<label for="male">Male</label><br>
<input type="radio" name="gender" value="female" id="female">
<label for="female">Female</label><br><br>
<label for="interests">Interests:</label><br>
<input type="checkbox" name="interests[]" value="reading" id="reading">
<label for="reading">Reading</label><br>
<input type="checkbox" name="interests[]" value="music" id="music">
<label for="music">Music</label><br>
<input type="checkbox" name="interests[]" value="sports" id="sports">
<label for="sports">Sports</label><br><br>
<label for="country">Country:</label>
<select name="country" id="country">
<option value="usa">USA</option>
<option value="canada">Canada</option>
<option value="uk">UK</option>
<option value="australia">Australia</option>
</select><br><br>
<label for="message">Message:</label><br>
<textarea name="message" id="message" rows="5" cols="40"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
```
这段代码会创建一个表单,包含了文本框、单选按钮、复选框、下拉式列表框以及文本区域,用户填写并提交表单后,表单数据会被发送到 `submit.php` 页面进行处理。您可以根据需要修改表单元素的名称、选项值、标签内容等。同时,您还需要创建 `submit.php` 页面,用于接收和处理表单数据,并将数据显示在表格中。
阅读全文