1

我不希望在创建子节点时触发开放节点事件。这是我的实现。

$(function () {
$("#tree").jstree({ 
    "json_data" : {
        "data" : [
            { 
                data : "/", 
                attr : { "id" : "root"},
                state : "closed",
                "children" : [ { "data" : "child1",
                                "attr" : { "id" : "child1.id" },
                                "children" : [ ] }
                             ]
            },
        ]
    },
    "plugins" : [ "themes", "json_data", "crrm", "ui" ]
})
.bind("select_node.jstree",function(event, data) { $("#tree").jstree("create",.... });
.bind("open_node.jstree",function(event,data){ . . . });

选择节点时创建节点会触发我不想要的事件 open_node。open_node 事件对我有不同的作用。任何人都可以在不触发 open_node 事件的情况下帮助添加节点吗?

4

0 回答 0