web-dev-qa-db-ja.com

選択オプションjqueryに基づいてdivを表示/非表示

これが私のコードです。なぜ機能しないのですか?

<Script> 
   $('#colorselector').change(function() {
        $('.colors').hide();
        $('#' + $(this).val()).show();
 });
</Script>
<Select id="colorselector">
   <option value="red">Red</option>
   <option value="yellow">Yellow</option>
   <option value="blue">Blue</option>
</Select>
<div id="red" class="colors" style="display:none"> .... </div>
<div id="yellow" class="colors" style="display:none"> ... </div>
<div id="blue" class="colors" style="display:none"> ... </div>
22
yogsma

DOMがロードされる前にコードを実行しています。

これを試して:

ライブの例:

http://jsfiddle.net/FvMYz/

$(function() {    // Makes sure the code contained doesn't run until
                  //     all the DOM elements have loaded

    $('#colorselector').change(function(){
        $('.colors').hide();
        $('#' + $(this).val()).show();
    });

});
73
user113716
<script>  
$(document).ready(function(){
    $('#colorselector').on('change', function() {
      if ( this.value == 'red')
      {
        $("#divid").show();
      }
      else
      {
        $("#divid").hide();
      }
    });
});
</script>

すべての値に対してこのようにします

6
saurabh yadav

1つの値を選択するときにdivを表示し、ドロップダウンボックスから別の値を選択するときに非表示にするには:-

 $('#yourselectorid').bind('change', function(event) {

           var i= $('#yourselectorid').val();

            if(i=="sometext") // equal to a selection option
             {
                 $('#divid').show();
             }
           elseif(i=="othertext")
             {
               $('#divid').hide(); // hide the first one
               $('#divid2').show(); // show the other one

              }
});
2
Summved Jain

show()のセレクタに:selectedがありません-これの使用例については、 jQueryドキュメント を参照してください。

あなたの場合、おそらく次のようになります。

$('#'+$('#colorselector option:selected').val()).show();
1
Colonel Sponsz