<select>
标签用于创建单选或多选菜单。
select 元素中的 <option>
标签用于定义列表中的可用选项。
属性 | 值 | 描述 |
autofocus | autofocus | 指定在页面加载后文本区域自动获得焦点 |
disabled | disabled | 指定该下拉列表被禁用 |
form | form_id | 指定所属表单 |
multiple | multiple | 指定该下拉列表支持多个选项 |
name | name | 指定该下拉列表的名称 |
required | 指定文本区域是必填的 | |
size | number | 指定下拉列表中可见选项的数目 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>NTHOME-零基础入门学习Web(HTML5+CSS3)</title>
</head>
<body>
<select autofocus>
<option>NTHOME</option>
<option>Web课程</option>
</select>
</body>
</html>
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
1.0 | 1.0 | 1.0 | 1.0 |