HTML
HTML <optgroup> 元素
包含被禁用的选项组
源代码:
点击运行 »
<select> <optgroup label="分组 1"> <option>选项 1.1</option> </optgroup> <optgroup label="分组 2"> <option>选项 2.1</option> <option>选项 2.2</option> </optgroup> <optgroup label="分组 3" disabled> <option>选项 3.1</option> <option>选项 3.2</option> <option>选项 3.3</option> </optgroup> </select>
运行结果:
点击运行 »