1

这是我的js:

<script type="text/javascript">
        $(document).ready(function(){
           $('#box1').hide();
           $('#box2').hide();
           $('#box3').hide();
           $("#thechoices").change(function(){
              if(this.value == 'all'){
                     $("#boxes").children().show();
                  }else{
                     $("#" + this.value).show().siblings().hide();
                  }
           });          
           $("#thechoices").change(); 
        });
</script>

和HTML:

    <div id="boxes">
       <div id="box1"><p>Box 1 stuff…&lt;/p></div>
       <div id="box2"><p>Box 2 stuff…&lt;/p></div>
       <div id="box3"><p>Box 3 stuff…&lt;/p></div>
    </div>

从下拉列表中选择后,我需要清除(清空)所有其余选项(即使我打开了它们不会出现的源代码)并同时禁用下拉列表,

如何做到这一点?

4

1 回答 1

0

我认为这应该可以解决问题。

$(document).ready(function(){
    $('#thechoices').change(function(){
        $(this).empty();
    });
});
于 2013-03-12T19:15:41.320 回答