jQuery,如何选择其他下拉列表值时如何使下拉列表值

时间:2019-03-14 10:10:25

标签: jquery

我写了一个脚本,可以用按钮添加下拉列表,并且每个下拉列表不能从数据库中选择相同的值。

$(document).ready(function(){  
  $("select").change(function() {   
    $("select").not(this).find("option[value="+ $(this).val() + "]").attr('disabled', true);
  }); 
}); 

但是仍然无法正常工作。

1 个答案:

答案 0 :(得分:1)

$("select").not(this).find("option[value="+ $(this).val() + "]").attr('disabled', true);

..应为:

$("select").not(this).find("option[value='"+ $(this).val() + "']").prop('disabled', true);