<div class="yui-gd">
<div class="yui-u first"><label for="${args.htmlid}-addContent">${msg("label.HowToAddContent")}:</label></div>
<div class="yui-u">
<select id="addContent" name="addContent" onchange="dropdown(this)">
<option value="1" selected="selected">${msg("label.generateFromDescription")}</option>
<option value="2">${msg("label.uploadFile")}</option>
</select>
</div>
</div>
<script type="text/javascript">//<![CDATA[
function dropdown(sel){
//if(document.getElementById("addContent").value == "1")
if(sel.value == "0"){
document.getElementById('desc').style.display = 'block'
}
else {
document.getElementById('desc').style.display = 'none'
}
}
//]]></script>
選択ボックスにイベントハンドラーを追加したいので書きます。Firefoxではうまく機能しますが、IEでは常にnull例外をスローします。attachEventを使用しても、IEでは機能しません。上記でdocument.getElementById( "addContent")を使用すると、常にnull例外がスローされます。しかし、これらはすべてFirefoxでうまく機能します。
誰かが理由を教えてもらえますか?前もって感謝します !