如何遍历jstree的所有节点

How to loop over all the nodes of a jstree

我不知道如何遍历 jstree 的所有节点。

我正在寻找的是 jstree jstree1。我想遍历它的所有 children 和 sub-children 和 print/get 每片叶子的 id

谢谢。

这就是我解决问题的方法

$(function () {
    $.each($("#jstree1").jstree('full').find("li"), function (index, element) 
    {
        console.log($(element));
    });
});