9

如何使用“create”方法创建根节点

Root
 |___ Child1
 |___ Child2

我正在使用 JsTree,通过使用 'json_data' 我可以创建节点,但我想使用 'create' 方法动态创建所有节点。

请帮我....

4

2 回答 2

11

从 jsTree 3.0.0-beta10 版本开始,要创建顶级节点,父节点的引用是"#". 例如:

$("#jstree").jstree('create_node', '#', {'id' : 'myId', 'text' : 'My Text'}, 'last');

此处给出的较旧答案不适用于该版本的 jsTree。

于 2014-03-24T13:38:26.713 回答
1

Maybe it is what you are looking for:

$("#tree").jstree("create", -1, false, "Name", false, true);
于 2012-08-01T09:24:58.643 回答