我正在尝试找到一种创建子节点的方法(使用.jstree("create", null, "inside", ....
)。
但这将创建一个新节点作为所有现有子节点中的最后一个节点。
是否可以强制将新节点添加为(新)第一个孩子?
答案 0 :(得分:2)
我使用了这段代码:
$('#jstree').jstree(true).create_node('#', //parent node, '#' for root
"new first node", //data of the node
"first" //position of the new node: first, last
);
另请查看jsTree API。
HTH