JStree:如何创建一个子节点作为第一个子节点

时间:2014-09-10 10:08:15

标签: jstree children

我正在尝试找到一种创建子节点的方法(使用.jstree("create", null, "inside", ....)。 但这将创建一个新节点作为所有现有子节点中的最后一个节点。

是否可以强制将新节点添加为(新)第一个孩子?

1 个答案:

答案 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