我有一个jsTree,我这样填充
$( '#jstree')jstree();
$ data是一个json_encoded数组
创建树之后,有没有办法将多个节点添加到树中,比如按一下按钮?
答案 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", });