私のページでは、フォームにチェックボックスがありません。それらのいくつかをチェックしているという点で、残りのチェックボックスをフィルタリングし、それらにseparetイベントを追加する必要があります。私はこれが好きです:
var userLocales = $('input[type="checkbox"]', "form").filter(function(){
return $(this).val() === value["name"]
}).prop("checked",true);
$(userLocales).click(function(){
$(this).parent().toggleClass("red");
})
$('input:checkbox:not("checked")', "form").not(userLocales).click(function(){
$(this).parent().addClass("green"); //this is not working.. it works even for not selected elements..
})
しかし、機能していません..これを行うための正しい方法はありますか..?