web-dev-qa-db-ja.com

jQuery-選択したオプションを無効にする

JQueryを使用して、選択ボックスで既に選択されているオプションを無効にする必要があります。 asmselect のようにグレーアウトしたいです。

私の例をテストしてください here

//JS
$("#theSelect").change(function(){          
  var value = $("#theSelect option:selected").val();
  var theDiv = $(".is" + value);

  theDiv.slideDown().removeClass("hidden");
});


$("div a.remove").click(function () {     
  $(this).parent().slideUp(function() { $(this).addClass("hidden"); }); 
});

//HTML
<body>
<div class="selectContainer">
    <select id="theSelect">
        <option value="">- Select -</option>
        <option value="Patient">Patient</option>
        <option value="Physician">Physician</option>
        <option value="Nurse">Nurse</option>
    </select>
</div>
<div class="hidden isPatient">Patient <a href="#" class="remove" rel="Patient">remove</a></div>
<div class="hidden isPhysician">Physician <a href="#" class="remove" rel="Patient">remove</a></div>
<div class="hidden isNurse">Nurse <a href="#" class="remove" rel="Patient">remove</a></div>
</body>​

更新済み:ここに 完成したソリューション があります。パトリックとシーメンに感謝します。

52
Jeffrey

この行をchangeイベントハンドラーに追加します

    $("#theSelect option:selected").attr('disabled','disabled')
        .siblings().removeAttr('disabled');

これにより、選択したオプションが無効になり、以前に無効にしたオプションが有効になります。

編集:

以前のものを再度有効にしたくない場合は、行のこの部分を削除します。

        .siblings().removeAttr('disabled');

編集:

http://jsfiddle.net/pd5Nk/1/

[削除]をクリックしたときに再度有効にするには、これをクリックハンドラーに追加します。

$("#theSelect option[value=" + value + "]").removeAttr('disabled');
108
user113716

これにより、オプションを選択/削除するときに、それぞれオプションが無効/有効になります。

$("#theSelect").change(function(){          
    var value = $(this).val();
    if (value === '') return;
    var theDiv = $(".is" + value);

    var option = $("option[value='" + value + "']", this);
    option.attr("disabled","disabled");

    theDiv.slideDown().removeClass("hidden");
    theDiv.find('a').data("option",option);
});


$("div a.remove").click(function () {     
    $(this).parent().slideUp(function() { $(this).addClass("hidden"); });
    $(this).data("option").removeAttr('disabled');
});

デモ: http://jsfiddle.net/AaXkd/

6
Simen Echholt

これを試してください、

$('#select_id option[value="'+value+'"]').attr("disabled", true);
4
Siva Anand

これはうまくいくようです:

$("#theSelect").change(function(){          
    var value = $("#theSelect option:selected").val();
    var theDiv = $(".is" + value);

    theDiv.slideDown().removeClass("hidden");
    //Add this...
    $("#theSelect option:selected").attr('disabled', 'disabled');
});


$("div a.remove").click(function () {     
    $(this).parent().slideUp(function() { $(this).addClass("hidden"); });
    //...and this.
    $("#theSelect option:disabled").removeAttr('disabled');
});
4
jeanreis