我写了一个脚本,可以用按钮添加下拉列表,并且每个下拉列表不能从数据库中选择相同的值。
$(document).ready(function(){
$("select").change(function() {
$("select").not(this).find("option[value="+ $(this).val() + "]").attr('disabled', true);
});
});
但是仍然无法正常工作。
答案 0 :(得分:1)
$("select").not(this).find("option[value="+ $(this).val() + "]").attr('disabled', true);
..应为:
$("select").not(this).find("option[value='"+ $(this).val() + "']").prop('disabled', true);