web-dev-qa-db-fra.com

Activer/Désactiver une liste déroulante dans jQuery

Je suis nouveau sur jQuery et je veux activer et désactiver une liste déroulante à l'aide d'une case à cocher C'est mon html: 

<select id="dropdown" style="width:200px">
    <option value="feedback" name="aft_qst">After Quest</option>
    <option value="feedback" name="aft_exm">After Exam</option>
</select>
<input type="checkbox" id="chkdwn2" value="feedback" />

De quel code jQuery ai-je besoin pour faire cela? Rechercher également une bonne documentation jQuery/matériel d’étude.

59
ARUN P.S

Voici un moyen que j'espère facile à comprendre:

http://jsfiddle.net/tft4t/

$(document).ready(function() {
 $("#chkdwn2").click(function() {
   if ($(this).is(":checked")) {
      $("#dropdown").prop("disabled", true);
   } else {
      $("#dropdown").prop("disabled", false);  
   }
 });
});
139
Kris Krause

Essayer - 

$('#chkdwn2').change(function(){
    if($(this).is(':checked'))
        $('#dropdown').removeAttr('disabled');
    else
        $('#dropdown').attr("disabled","disabled");
})
10
Jayendra

J'utilise JQuery> 1.8 et cela fonctionne pour moi ...

$('#dropDownId').attr('disabled', true);
6
Chris Rosete

essaye ça

 <script type="text/javascript">
        $(document).ready(function () {
            $("#chkdwn2").click(function () {
                if (this.checked)
                    $('#dropdown').attr('disabled', 'disabled');
                else
                    $('#dropdown').removeAttr('disabled');
            });
        });
    </script>
1
santosh singh

Pour activer/désactiver - 

$("#chkdwn2").change(function() { 
    if (this.checked) $("#dropdown").prop("disabled",true);
    else $("#dropdown").prop("disabled",false);
}) 

Démo - http://jsfiddle.net/tTX6E/

1
ipr101
$("#chkdwn2").change(function(){
       $("#dropdown").slideToggle();
});

JsFiddle

1
genesis
$(document).ready(function() {
 $('#chkdwn2').click(function() {
   if ($('#chkdwn2').prop('checked')) {
      $('#dropdown').prop('disabled', true);
   } else {
      $('#dropdown').prop('disabled', false);  
   }
 });
});

en utilisant .prop dans l'instruction if.

0
RossGamble
$("#chkdwn2").change(function() { 
    if (this.checked) $("#dropdown").prop("disabled",'disabled');
}) 
0
Baqer Naqvi

Une meilleure solution sans if-else:

$(document).ready(function() {
    $("#chkdwn2").click(function() {
        $("#dropdown").prop("disabled", this.checked);  
    });
});
0
Muhammad Ahmad