1

有没有一种方法可以让我将 add_before 和 add_after 添加到jstree

例如:

.bind("add_after.jstree", function (node,data){
      #perform some function 
})
4

1 回答 1

1

来自documentation

jsTree 使用事件来通知树中发生的任何更改。所有事件都在 jstree 命名空间中的树容器上触发,并以触发它们的函数命名。

还有一个特殊事件 - before.jstree。此事件使您能够阻止执行操作。

因此,您应该能够在插入新节点之前和之后监听事件,如下所示:

$(function () {
    $("#treeId").bind("before.jstree", function (e, data) {
        if(data.func === "create_node") {
            // This block will execute before inserting a new node
        }
    });

    $("#treeId").bind("create_node.jstree", function (e, data) {
            // This block will execute after inserting a new node
    });
});
于 2013-05-24T14:42:33.300 回答