私のフォームでは、配列内の存在に基づいて2種類のクラスを適用する必要があります。そのためには、どのようにフィルタリングしますか?
これは私の試みです:
<form>
<input type="checkbox" value="one" />
<input type="checkbox" value="two" />
<input type="checkbox" value="three" />
<input type="checkbox" value="four" />
<input type="checkbox" value="five" />
</form>
var names = ["one","two","three"];
$(":checkbox", "form").filter(function(){
return $(this).val() === names
}).addClass("blue")
$(":checkbox", "form").filter(function(){
return $(this).val() !== names
}).addClass("green")
しかし、うまくいきません..それを成し遂げるための正しい方法