87,989
社区成员
发帖
与我相关
我的任务
分享
$('#tt').tree({
checkbox: true,
url: 'xx.action?rId='+node.id,
animate : true,
cascadeCheck : true,
onlyLeafCheck : false,
onBeforeExpand:function(actionNode,param){
...
},onLoadSuccess:function(node,data){
...
}
});
$('#tt').tree({
onLoadSuccess:function(){
$(this).find('span.tree-checkbox').unbind().click(function(){
return false;
});
}
});