data
变量 infunction (e, data)
总是返回 undefined 。IIRC 它应该是悬停的节点。
$("#search").bind("hover_node.jstree", function (e, data) {
console.log(data); //always 'undefined'
//This is what I wish would work:
var node = data.rslt.obj, // the hovered node
tree_instance = data.inst; // tree instance
tree_instance.open_node(node);
}).jstree({
"core": {
...
});
关于这里有什么问题的任何想法?