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