刷新时的jsTree不会保留先前选定的节点。 打开jsTree并选择一个节点,然后在刷新时关闭jsTree。 This is the jsFiddle Example
我曾尝试使用事件绑定但似乎无法正常工作。请让我知道一项解决方法。
JS:
$(function () {
$('#jstree').jstree();
});
function refresh(){
$("#jstree").jstree("refresh");
}
答案 0 :(得分:1)
我编辑你的小提琴。这是你想要的吗?
$(function () {
$('#jstree').jstree({plugins: ["state"]});
});
function refresh(){
$("#jstree").jstree("refresh");
}