我需要从 json 文件中加载 jsTree 的上下文菜单。上下文菜单保存在此文件(“test.json”)中:
{
"item1" : {
"label" : "voce1"
},
"item2" : {
"label" : "voce2"
}
}
加载上下文菜单的代码是:
$(function () {
$("#tree").jstree({
"plugins" : [ "themes", "json_data", "ui", "contextmenu" ],
// other code ....
"contextmenu" : {
"items" : customMenu
}
})
});
function customMenu(node) {
$.getJSON( "test.json", function(json) {
return json;
});
}
这样,我看不到上下文菜单。你能帮助我吗?