選択可能な項目を定義するoption要素
<option>……</option>

 option要素は「selectable choice」の略で、select要素の項目を定義します。この要素を増やすことで、都道府県など数の多いものでも、その全部を選択メニューに含めることができます。

 しかし、多くのoption要素がある場合、見やすさや使い勝手が損なわれてしまいます。そこでoptgroup要素を指定すると、階層化されて表示されるため、ユーザビリティーを保つことができます。

最もよく利用するWebブラウザは次のうちどれですか。

<html>
<head>
<title>option要素のサンプル</title>
</head>
<body>
<div>
<form action="example.cgi" method="post">
<p>最もよく利用するWebブラウザは次のうちどれですか。</p>
<p>
<select size="8">
<optgroup label="Internet Explorer">
<option>Internet Explorer 6</option>
<option>Internet Explorer 7</option>
<option>Internet Explorer 8</option>
</optgroup>
<optgroup label="Firefox">
<option>Firefox 2</option>
<option>Firefox 3</option>
<option>Firefox 3.5</option>
</optgroup>
</select>
</p>
<p><input type="submit" value="送信" /></p>
<p><input type="reset" value="リセット"/></p>
</form>
</div>
</body>
</html>

DOMでの参照方法

[window.]document.formName.selectName.optionName.disabled
[window.]document.forms[i].elements[j].options[k].optionName.disabled
[window.]document.getElementById("【ID属性値名】").disabled

オプション属性

属性 機能 入力例 DOM参照
label 文字列 要素の内容となって
いるテキストそのもの
よりも簡略化した
ラベルを指定
※Webブラウザによって
は対応していない
<option label="sam101">sample 101</option> [window.]document.formname.selectname.optionname.label
[window.]document.forms[i].elements[j].options[k].label
[window.]document.getElementById("【ID属性値名】").label
selected "selected" Webページを
読み込んだ初期状態
から選択している状態に
<option selected="selected">sample</option> [window.]document.formName.selectName.optionName.selected
[window.]document.forms[i].elements[j].options[k].selected
[window.]document.getElementById("【ID属性値名】").selected
value 文字列 選択肢の値を
指定
<option value="Other">Other</option> [window.]document.formName.selectName.optionName.value
[window.]document.forms[i].elements[j].options[k].optionName.value
[window.]document.getElementById("【ID属性値名】").value

追加が可能なイベントハンドラ属性

onclick、ondblclick、onmousedown、onmouseup、onmouseover、onmousemove、onmouseout、onkeypress、onkeydown、onkeyup

有限会社タグパンダ
喜安 亮介

8/10

 INDEX
Web標準HTMLタグリファレンス(最終回)
フォームや入力部品を表す9つの正しいXHTMLタグ
フォーム
  form フォームを定義するform要素
  label ラベルを定義するlabel要素
  input 入力部品を定義するinput要素
  textarea 複数行のテキスト入力欄を定義するtextarea要素
  select 選択メニューを定義するselect要素
  optgroup 選択メニューの項目のグループを定義するoptgroup要素
option 選択可能な項目を定義するoption要素
  fieldset テーマとして関連のあるラベルとコントロールをグループ化するfieldset要素
  legend fieldset要素に対する説明文や表題を定義するlegend要素



HTML5 + UX フォーラム 新着記事
@ITメールマガジン 新着情報やスタッフのコラムがメールで届きます(無料)

注目のテーマ

デザインハック 記事ランキング

本日 月間