其他常用表单项标签
- select 表示下拉列表标签 与input标签常见属性相似
- optgroup 表示下拉列表分组标签 label属性,设置分组名称
- option 表示下拉列表项标签
- textarea 表示文本域标签 rows 属性代表行数,cols属性代表列数
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action = "#" method = "get" autocomplete="off">
所在城市:<select name = "city">
<option>---请选择城市---</option>
<optgroup label = "直辖市">
<option>上海</option>
<option>北京</option>
</optgroup>
<optgroup label = "省会城市">
<option>合肥</option>
<option>南京</option>
</optgroup>
</select>
<br/>
个人介绍:<textarea name = "desc" rows = "5" cols = "20"></textarea>
<button type = "submit">提交</button>
<button type = "reset">重置</button>
</form>
</body>
</html>