我想使用javascript函数在jstree中创建一个新文件/文件夹 喜欢
function create_new_node(...){
// this is external function
// append to current selected node in the tree ( I have it ).
//... etc
}
jstree脚本:
$('#tree').jstree(..)
.on('create_node.jstree', function (e, data) {
console.log("create_node.jstree",data);
//this trigger when item created
})
});
我怎么能这样做??
答案 0 :(得分:0)
我找到了答案:
$('#tree').jstree("create_node", "parent_id", function(e,data){
console.log('hi', data);
});