我有一个类别列表,其中某些类别有子项,我正在尝试创建一个所有类别,点击后,将检查同一类别中的所有兄弟复选框。
e.g;点击 MUSIC 类别下方的所有将检查blues, jazz, rock n roll
HTML:
<ul name="events-categories" id="events-categories">
<li><input type="checkbox" name="category-events" value="185" placeholder="" id="category-185" class="events-category"> CONVENTIONS
<ul class="event-children">
<li><input type="checkbox" name="child-category-all" value="" class="events-child-category-all">ALL</li>
<li><input type="checkbox" name="child-category-190" value="190" id="child-category-190" class="child events-child-category">SCIENCE</li>
<li><input type="checkbox" name="child-category-191" value="191" id="child-category-191" class="child events-child-category">TECHNOLOGY</li>
</ul>
</li>
<li><input type="checkbox" name="category-events" value="184" placeholder="" id="category-184" class="events-category"> MUSIC
<ul class="event-children">
<li><input type="checkbox" name="child-category-all" value="" class="events-child-category-all">ALL</li>
<li><input type="checkbox" name="child-category-189" value="189" id="child-category-189" class="child events-child-category">BLUES</li>
<li><input type="checkbox" name="child-category-188" value="188" id="child-category-188" class="child events-child-category">JAZZ</li>
<li><input type="checkbox" name="child-category-187" value="187" id="child-category-187" class="child events-child-category">ROCK N ROLL</li>
</ul>
</li>
<li><input type="checkbox" name="category-events" value="186" placeholder="" id="category-186" class="events-category"> TRIBUTES</li>
</ul>
CSS:
.event-children {
margin-left: 20px;
list-style: none;
display: none;
}
jQuery到目前为止:
/**
* left sidebar events categories
* toggle sub categories
*/
$('.events-category').change( function(){
console.log('showing sub categories');
var c = this.checked;
if( c ){
$(this).next('.event-children').css('display', 'block');
}else{
$(this).next('.event-children').css('display', 'none');
}
});
$('.events-child-category-all').change( function(){
var c = this.checked;
if( c ){
$(this).siblings(':checkbox').attr('checked',true);
}else{
$(this).siblings(':checkbox').attr('checked',false);
}
});
jsfiddle:http://jsfiddle.net/SENV8/
答案 0 :(得分:7)
$('.events-child-category-all').change( function(){
$(this).parent().siblings().find(':checkbox').attr('checked', this.checked);
});
答案 1 :(得分:0)
您需要的是这些,因为checkboxes
不是siblings
$('.events-child-category-all').change( function(){
var c = this.checked;
if( c ){
$(this).closest('.event-children').find(':checkbox').attr('checked',true);
}else{
$(this).closest('.event-children').find(':checkbox').attr('checked',false);
}
});
答案 2 :(得分:0)
也许是这样的:
$(".events-child-category-all").click(function() {
$(this).closest("ul").find("input[type=checkbox]").prop("checked",this.checked);
});
.closest()
method遍历DOM树,寻找匹配元素,在这种情况下找到复选框所在的“ul”。
如果您使用的是早于1.6的jQuery版本,则需要.attr()
而不是.prop()
。
答案 3 :(得分:0)
http://jsfiddle.net/ahren/SENV8/2/
$('.events-child-category-all').change( function(){
var c = this.checked;
if( c ){
$(this).parent().siblings().find(':checkbox').prop('checked',true);
}else{
$(this).parent().siblings().find(':checkbox').prop('checked',false);
}
});
siblings
发出的输入没有change
。您首先需要向父级li
上升一级,然后抓住siblings
,并使用find()
获取其复选框。或者您可以使用children()
代替find()