我有一个div标签,在div里面我有子元素,我想得到所有这些子元素并检查子元素是否为复选框,如果子元素是复选框,那么我需要检查复选框。 / p>
<div class="options" >
<input type="checkbox" class='roles' />
</div>
这是它的外观,并且将有未指定数量的具有相同类别的复选框。
$('.options').children('input').each(function () {
alert(this.value);
});
答案 0 :(得分:1)
选中 Fiddle Demo
$('.options').children('input[type="checkbox"]').each(function () {
this.checked = true;
});
或者
$('.options').children().filter('input[type="checkbox"]').each(function () {
this.checked = true;
});