easyui tree点击展开优化,不点击+号或箭头也能展开

在页面添加以下js代码

$(function () {
    $('.easyui-tree').tree({
        onSelect: function (node) {
            if (node.state == "closed")
                $(this).tree('expand', node.target);
            else
                $(this).tree('collapse', node.target);
        }
    });
});

 

posted @ 2017-02-08 16:45  txworld  阅读(1973)  评论(0)    收藏  举报