jstree中如何检查所选节点是否有子节点?
我正在通过以下代码获取选定的节点。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这就是从特定节点提取子信息的简单方法。
This is simply how you extract children information from a specific node.
试试这个:
这将返回所选节点的子节点的 jQuery 对象数组。
Try this:
Which will return an array of jQuery objects of the children of the selected node.
这会有所帮助。
this will help.
这是检查节点是否有子节点的方法。
This is how you can check whether a node has children or not.