选中/取消选中树中的复选框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选中/取消选中树中的复选框相关的知识,希望对你有一定的参考价值。

logical action on tree with checkboxes
  1. $("ul input:checkbox").change(function(){
  2.  
  3. if ($(this).is(':checked')) {
  4. // children
  5. $(this).parent().find("input:checkbox").attr('checked', 'checked');
  6. }
  7. else {
  8. // children
  9. $(this).parent().find("input:checkbox").removeAttr('checked');
  10. // parents
  11. $(this).parents('li').each(function(){
  12. $(this).children('input:checkbox').removeAttr('checked');
  13. });
  14. }
  15. });

以上是关于选中/取消选中树中的复选框的主要内容,如果未能解决你的问题,请参考以下文章

C# 选中/取消选中 WebBrowser 控件中的复选框?

TreeView 检测节点选择,但在选中或取消选中时不检测

通过 CommandButton 取消选中整个工作簿中的所有复选框

当复选框兄弟姐妹更改为选中时显示警报

选中/取消选中同位素中的输入复选框

使用 actionscript 取消选中组件中的复选框?