onLoadSuccess:function(node,data){ //全部展开
var t = $(this);
if(data){
$(data).each(function(index,d){
if(this.state == 'closed'){
t.tree('expandAll');
}
});
}
}
var t = $(this);
if(data){
$(data).each(function(index,d){
if(this.state == 'closed'){
t.tree('expandAll');
}
});
}
}