欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

combotree 加载完毕后全部展开

程序员文章站 2022-05-18 20:49:47
...
 $(function(){
    $('#cc').combotree({
        url:'xx.do',
        method:'get',
        multiple:'false',
        onLoadSuccess:function(node,data){
        for (var i=0;i<data.length ;i++ ){
            var node = $("#cc").combotree('tree').tree("find",data[i].id);            
            $("#cc").combotree('tree').tree('expandAll',node.target);//展开所有节点 
         }
        }   
    }); 
})
相关标签: combotree js