EasyUI tree 实现点击展开/折叠

$('#tt').tree( {
    url : 'getTree.do',
    animate: true,
    onClick: function(node){
        $('#tt').tree(node.state === 'closed' ? 'expand' : 'collapse', node.target);  
    }
});

作者:itmyhome

你可能感兴趣的:(EasyUI)