0
        <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でうまく機能します。

誰かが理由を教えてもらえますか?前もって感謝します !

4

1 に答える 1

0

どのIEバージョンを使用していますか?古いバージョンの場合は、オプションから選択した値を取得してみてください。

var selectedValue = sel.options[sel.selectedIndex].value;
于 2009-08-21T04:04:54.667 に答える