tree.on("checkchange",function(node){
    var cc = "";
    root.cascade(function(node1){    
        if(node1.leaf==true&&node1.attributes.checked=='true'){
            cc+=node1.id+",";
        }
    }); 
    if(cc!=""){
        cc = cc.substring(0,cc.length-1)
    }
})

相关文章:

  • 2021-12-05
  • 2022-12-23
  • 2022-02-08
  • 2021-09-17
  • 2021-11-01
  • 2021-06-16
  • 2022-12-23
  • 2021-07-05
猜你喜欢
  • 2021-12-27
  • 2022-12-23
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2021-10-07
相关资源
相似解决方案