html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>下拉列表分组</title>
</head>
<body>
<!--select:
1.表示创建下拉列表
2.size属性设置列表中显示多少个列表项
3.multiple属性可以定义下拉分组多选
4.多选时,name属性值后应加上"[]",数组新式,发到服务器以遍历数组的方式发送过来
option:
1.表示每一个下拉列表项
2.往服务器中发送的是value值
optgroup:
1.用来对option(对下拉表中的内容进行分组)进行分组
2.label属性设置分组名称
-->
<form action="http://127.0.0.1/520ww1.php" method="post">
到过的省市:<br />
<select name="abc[]" size="3" multiple style="width: 200px;height: 150px;">
<optgroup label="东北">
<option value="a">辽宁</option>
<option value="b">吉林</option>
<option value="c">黑龙江</option>
</optgroup>
<optgroup label="西南">
<option value="d">四川</option>
<option value="e">云南</option>
<option value="f">贵州</option>
</optgroup>
</select>
<input type="submit" value="提交"/>
</form>
</body>
</html>