需要使用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>
更新:这是finished solution。感谢Patrick和Simen。
答案 0 :(得分:104)
将此行添加到change
事件处理程序
$("#theSelect option:selected").attr('disabled','disabled')
.siblings().removeAttr('disabled');
这将禁用所选选项,并启用任何以前禁用的选项。
修改强>
如果您不想重新启用之前的那些,只需删除该行的这一部分:
.siblings().removeAttr('disabled');
修改强>
要在单击删除时重新启用,请将其添加到您的点击处理程序。
$("#theSelect option[value=" + value + "]").removeAttr('disabled');
答案 1 :(得分:6)
这将分别在您选择/删除选项时禁用/启用选项。
$("#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');
});
答案 2 :(得分:4)
这似乎有效:
$("#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');
});
答案 3 :(得分:3)
请试试这个,
$('#select_id option[value="'+value+'"]').attr("disabled", true);