日期:2014-05-16 浏览次数:20482 次
buttons : {
"确定" : function() {
var nodes = setting1.getCheckedNodes(true);
alert(nodes);
$(this).dialog("close");
},
"取消" : function() {
$(this).dialog("close");
}
}
// 初始化树
setting1 = {
treeId : "zt",
checkable : true,
expandSpeed : "slow",
async : true,
checkRang : "level",
isParent : true,
callback : {
expand : zTreeOnExpand,
asyncSuccess : zTreeOnAsyncSuccess,
change : zTreeOnChange,
remove : zTreeOnRemove
}
};
$("#你加载所有节点的外部容器ID:checkbox:checked").each(function (){
alert($(this).val())
})