optionの履歴
IEではoption要素にイベントハンドラを設定できない。
クリックした時にイベント起動したい場合はselect要素のonchageを使う。
<select onchange="alert(this.options[this.selectedIndex].value)"> <option value="1">one</option> <option value="2">two</option> <option value="3">three</option> </select>
http://www.ozzu.com/website-design-forum/option-onclick-inte...