jstree中如何检查所选节点是否有子节点?

发布于 2024-11-19 12:37:08 字数 131 浏览 4 评论 0原文

我正在通过以下代码获取选定的节点。

var selected=$("#warehouseTree").jstree('get_selected');

现在我想检查所选节点的子节点。

I m taking selected node by following code.

var selected=$("#warehouseTree").jstree('get_selected');

and now i want to check for child nodes for selected node.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

煮茶煮酒煮时光 2024-11-26 12:37:08

这就是从特定节点提取子信息的简单方法。

$("#tree_2").jstree().get_node("13").children

This is simply how you extract children information from a specific node.

$("#tree_2").jstree().get_node("13").children

倾城泪 2024-11-26 12:37:08

试试这个:

var tree = jQuery.jstree._reference('#warehouseTree');
var children = tree._get_children(selected);

这将返回所选节点的子节点的 jQuery 对象数组。

Try this:

var tree = jQuery.jstree._reference('#warehouseTree');
var children = tree._get_children(selected);

Which will return an array of jQuery objects of the children of the selected node.

黯然 2024-11-26 12:37:08

这会有所帮助。

   if(selected.children().size() > 0)
    {
    //has child
    }

this will help.

   if(selected.children().size() > 0)
    {
    //has child
    }
裸钻 2024-11-26 12:37:08

这是检查节点是否有子节点的方法。

var tree = jQuery.jstree._reference('#warehouseTree');
var isParent = instance.is_parent(selected);
console.log(isParent) //  true for directory

This is how you can check whether a node has children or not.

var tree = jQuery.jstree._reference('#warehouseTree');
var isParent = instance.is_parent(selected);
console.log(isParent) //  true for directory
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文