选中/取消选中树中的复选框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选中/取消选中树中的复选框相关的知识,希望对你有一定的参考价值。
logical action on tree with checkboxes
$("ul input:checkbox").change(function(){ if ($(this).is(':checked')) { // children $(this).parent().find("input:checkbox").attr('checked', 'checked'); } else { // children $(this).parent().find("input:checkbox").removeAttr('checked'); // parents $(this).parents('li').each(function(){ $(this).children('input:checkbox').removeAttr('checked'); }); } });
以上是关于选中/取消选中树中的复选框的主要内容,如果未能解决你的问题,请参考以下文章
C# 选中/取消选中 WebBrowser 控件中的复选框?