HTML中表单是非常常用的元素,下面的代码是一组表单的例子,附上jsbin的链接:表单
这里表单用了以下几种元素:
- 单行文本
- 输入密码
- 单选框
- 多选框
- 文本域
- 下拉菜单
- 提交按钮
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<form>
<div class="login">
<label for="username">姓名:</label>
<input id="username" type="text" name="username" placeholder="用户名"><br>
<label for="password">密码:</label>
<input id="password" type="password" name="password" placeholder="输入密码">
</div>
<div class="sex">
<label>性别:</label>
<input type="radio" name="sex1" value="male"> 男
<input type="radio" name="sex1" value="female"> 女
</div>
<div class="orientation">
<label>取向:</label>
<input type="radio" name="sex2" value="male"> 男
<input type="radio" name="sex2" value="female"> 女
</div>
<div class="hobby">
<label>爱好:</label>
<input type="checkbox" name="hobby" value="dota"> dota
<input type="checkbox" name="hobby" value="tour"> 旅游
<input type="checkbox" name="hobby" value="pet"> 宠物
</div>
<div class="textarea">
<label>评论:</label>
<textarea>
</textarea>
</div>
<div class="mycar">
<label>我的car:</label>
<select name="car">
<option value="BENZ">奔驰</option>
<option value="BMW">宝马</option>
<option value="FORD">福特</option>
<option value="SB" selected>萨博</option>
</select>
</div>
<div class="submit">
<input type="submit" value="提交">
</div>
</form>
</body>
</html>
浏览器显示的是这样的: