首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

EXt树铺展指定层

2012-11-25 
EXt树展开指定层?? /**??? ?* 树节点展开??? ?*/??? function deepthexpand(node){? ??? ??? node.expand(

EXt树展开指定层

?? /**
??? ?* 树节点展开
??? ?*/
??? function deepthexpand(node){?
??? ??? node.expand();?
??? ??? if(node.getDepth() <=2 ){? //可以改为具体指定层数
??? ??? ??? node.eachChild(function(childnode){deepthexpand(childnode)});????
??? ??? }?
??? ??
??? }

热点排行