我在 jstree 中选定节点的属性方面遇到困难。这是我实现 jstree 的方式:
$(function () {
$("#tree").jstree({
"json_data" : {
"data" : [
{
data : "/",
attr : { "id" : "root" , "value" : "alpha"},
state : "closed",
"children" : [ { "data" : "child1",
"attr" : { "id" : "child1.id" },
"children" : [ ] }
]
},
]
},
"plugins" : [ "themes", "json_data", "crrm", "ui" ]
})
.bind("select_node.jstree",function(event, data) { . . . }
根据我的研究,我发现 data.rslt.obj.attr("value") 应该返回 "value" 属性的值,但它每次都返回 undefined。你能帮我确定我在这里缺少什么吗?