easyUi 탐색

2261 단어
//  $("#nav").tree({
    url:ThinkPHP['MODULE']+'/Index/getNav',
    onLoadSuccess:function(node, data){
        var _this = this;
        if(data){
            $(data).each(function(){
                if(this.state == 'closed'){
                    $(_this).tree('expandAll');
                }
            });
        }
    }
});
// 

좋은 웹페이지 즐겨찾기