3

我在将 jstree 与展开/折叠事件绑定时遇到了困难。我目前正在将 jstree 与 selected_node 事件绑定,如下所示:

$(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) { . . . }

我现在也在 {...} 中为展开/折叠事件寻找相同的事件处理功能。需要帮助来弄清楚如何做到这一点。

4

2 回答 2

5
.on('open_node.jstree', ....);

.on('close_node.jstree', ....);
于 2013-09-18T17:48:19.867 回答
1

如果您想了解有关节点的更多信息(例如 id):

$("#jstree").on("open_node.jstree", function (e, data) { alert("Open node_id: " + data.node.id); });
$("#jstree").on("close_node.jstree", function (e, data) { alert("Close node_id: " + data.node.id); });
于 2017-04-19T09:31:52.337 回答