Jstree - 添加多个新节点

时间:2014-02-03 16:24:17

标签: jstree

我有一个jsTree,我这样填充

$( '#jstree')jstree();

$ data是一个json_encoded数组

创建树之后,有没有办法将多个节点添加到树中,比如按一下按钮?

1 个答案:

答案 0 :(得分:0)

您可以尝试这样的事情:

 var ref = $('#jstree').jstree(true);
 //we bound it with .bind("select_node.jstree", function (event, data) {...
 var sel = data.node.id; 
 ref.create_node(sel, { "id": keyId, "text": mytext, "rel": "key", "type": "key",  });