我已阅读文档,但我找不到解决方案。
这是一个简单的例子,当我从tree_2中删除tree_1节点时,我想要捕获事件: http://jsfiddle.net/superjames/fumkdwqy/1/
HTML:
<div id="container">
<ul>
<li data-jstree='{"opened":true}'>First tree
<ul>
<li>Child node 1</li>
<li>Child node 2</li>
</ul>
</li>
</ul>
</div>
<br/><br/><br/>
<div id="container_2">
<ul>
<li data-jstree='{"opened":true}'>Second tree
<ul>
<li>Child node 3</li>
<li>Child node 4</li>
</ul>
</li>
</ul>
</div>
使用Javascript:
$('#container').jstree({
"core" : { "check_callback" : true }, // so that operations work
"plugins" : ["dnd"]
});
$('#container_2').jstree({
"core" : { "check_callback" : true }, // so that operations work
"plugins" : ["dnd"]
});
答案 0 :(得分:0)
使用此:
.on("copy_node.jstree", function (e, data) {
alert(1);
})
来源:https://groups.google.com/forum/#!topic/jstree/mrf6fY5d5JA