- 注册时间
- 2021-9-18
- 最后登录
- 2021-9-23
- 阅读权限
- 10
- 积分
- 11
- 精华
- 0
- 帖子
- 3
|
felt 发表于 2021-9-23 13:05
setTimeout(function(){
tree.scrollIntoView(node)
},100)
tree.cascadeChild(tree.getRootNode(),function (node) {
if (node.leave){
tree.checkNode(node);
var checkValue=tree.getCheckedNodes(false);
tree.expandPath(checkValue[0]);
tree.selectNode(checkValue[0])
setTimeout(function(){
tree.scrollIntoView(checkValue[0])
},100)
}
没有反应的
|
|