获取没有特定课程的所有复选框

时间:2014-09-25 14:32:59

标签: javascript checkbox

我需要找到没有特定类的所有复选框。 这就是我所拥有的,但这不起作用。我需要检查所有没有名为“features”的类的复选框。

var value = 'features';
$('input:checkbox[class!="'+value+'"]').attr("checked", "");

2 个答案:

答案 0 :(得分:2)

使用:not

var checkBoxes = $("input:checkbox:not(." + value + ")");

答案 1 :(得分:1)

这就是你想要的:fiddle here!

var cname = "features";
$('input:checkbox:not(.'+cname+')').each(function () {
        $(this).prop('checked', true);
  });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="checkbox" name="vehicle" value="one" class="features">one<br>
<input type="checkbox" name="vehicle" value="two" class="two">two<br>
<input type="checkbox" name="vehicle" value="three" class="three">three<br>
<input type="checkbox" name="vehicle" value="four" class="features" > four