仅选择属性设置为checked="checked"
的选项,但选择全部。
<input class="chxbx" type="checkbox" checked="checked">
<input class="chxbx" type="checkbox">
<input class="chxbx" type="checkbox">
jQuery的:
$(".chxbx").each(function(i, e){
if($(".chxbx").prop("checked", true)){
// this should select only the the input tag with
//checked="checked" but it selects all checkboxes
}
})
答案 0 :(得分:3)
您未正确使用.each
。
应该是:
$(".chxbx").each(function(){
if($(this).is(":checked")){
// this should select only the the input tag with
//checked="checked" but it selects all checkboxes
}
});
或者:
$(".chxbx:checked").each(function(){
// this should select only the the input tag with
//checked="checked" but it selects all checkboxes
});