jsTree コンテナに新しいノードを動的に追加しようとしています。まったく機能していません。何が欠けているのかわからない。
$("#tree").jstree({
core: {
"animation": 0
},
"html_data": {},
"themes": {
"icons": false
},
"search": {
"case_insensitive": true,
"show_only_matches": true
},
"plugins": ["themes", "html_data", "search"]
});
$("#tree").jstree("create_node", $("node_1"), "after", { "data": "Hello World" });
html:
<div id="tree">
<ul>
<li id="node1"><a>Hello</a></li>
</ul>
</div>