javascript Jstree - 如何获取父节点的子节点(换句话说,如何获取兄弟节点)

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/13817220/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-26 19:51:30  来源:igfitidea点击:

Jstree - how to get children of a parent node (in other words, how to get siblings)

javascriptjstree

提问by kul_mi

How to get all children of parent of currently selected node?

如何获取当前选定节点的父节点的所有子节点?

Something like currentNode._get_parent()._get_children() (which does not work)

类似于 currentNode._get_parent()._get_children() (不起作用)

回答by Shoopman

You can try

你可以试试

jQuery.jstree._reference("#treeSelector")._get_children(parentNode);

also see documentation

另见文档