基本上,我想要做的是,我想在树结构中显示与子父节点相同的内容,而不是文件夹结构。
答案 0 :(得分:1)
解决方案在https://github.com/vakata/jstree/issues/1101
上找到(function ($, undefined) {
"use strict";
$.jstree.plugins.noclose = function () {
this.close_node = $.noop;
};
})(jQuery);
$('#tree').jstree({
plugins : ["noclose", ... ],
...
});