任何人都可以确认这是否有效,因为它似乎对我的树配置没有影响(始终显示默认图标):
"themes": {
"icons": false
}
答案 0 :(得分:0)
在jstree v3中,主题部分是核心部分所以它应该写在它中。我正在写作 示例代码希望它有所帮助。
$('#treeloaddiv').jstree({
'core' : {
'data' : {
"url" : "/jstreedemo/JSTreeDemoServlet",
"type":"post",
"dataType" : "json", // needed only if you do not supply JSON headers
"data" : function (node) {
return { "id" : node.id };
}
},
"themes" : {
"icons" : false
}
}
});