我正在开发一个需要多个复选框值的应用程序。我有嵌套列表包含复选框。目前的功能是:
我需要添加此功能:
如果在选中父级后取消选中子级,则父级将取消选中,但会检查子级。
$('input[name="level-1"],input[name="level-2"]').bind('click', function () {
$('input[type=checkbox]', $(this).parent('li')).attr('checked', ($(this).is(':checked')));
});
我的代码可在此处找到:http://jsfiddle.net/dbcottam/Py4UN/
答案 0 :(得分:2)
可能的解决方案
将班级someclass
添加到最顶层的ul
元素,然后
$('.someclass :checkbox').bind('click', function () {
var $chk = $(this), $li = $chk.closest('li'), $ul, $parent ;
if($li.has('ul')){
$li.find(':checkbox').not(this).prop('checked', this.checked)
}
do{
$ul = $li.parent();
$parent = $ul.siblings(':checkbox');
if($chk.is(':checked')){
$parent.prop('checked', $ul.has(':checkbox:not(:checked)').length == 0)
} else {
$parent.prop('checked', false)
}
$chk = $parent;
$li = $chk.closest('li');
} while($ul.is(':not(.someclass)'));
});
演示:Fiddle
答案 1 :(得分:0)
我尝试了一个通用函数来处理多个级别。见下面的代码,
$('input[name^="level"]').click(function () {
//v-- Takes care of check/uncheck all child checkbox
$(this).parent().find('input[name^=level]').prop('checked', this.checked);
if (!this.checked) {
var level = this.name.substring(this.name.length - 1);
//using the naming convention `level-n` to uncheck parent
for (var i = level - 1; i > 0; i--) {
$('input[name="level-' + i + '"]').prop('checked', false);
}
}
});