optgroup
<optgroup> は <select> メニュー内の <option> 選択肢をグループ化します。
- 分類
- なし
- 内包できるもの
- <option> 要素
属性
選択肢を無効化
disablrd 属性を指定するとオプショングループ内の項目は選択不能になります。
<select>
<optgroup disabled>
<option>項目1</option>
</optgroup>
</select>
サンプル
オプションのグループの名称
label=”” 属性を指定するとオプショングループにラベル付けすることができます。必須属性であるため必ず指定する必要があります。
<select>
<optgroup label="グループ1">
<option>項目1</option>
<option>項目2</option>
</optgroup>
<optgroup label="グループ2">
<option>項目3</option>
<option>項目4</option>
<option>項目5</option>
</optgroup>
</select>