我的jstree遇到了一些问题。
我的代码如下:
<div id="jstree">
<ul>
<li>Folder 1
<ul>
<li id="child_1">Child 1</li>
<li>Child 2</li>
</ul>
</li>
<li>Folder 2</li>
<ul>
<li id="child_1">Child 1</li>
<li>Child 2</li>
</ul>
</ul>
</div>
$('#jstree').jstree({
'core' : {'multiple' : false},
'state' : { 'key' : 'jsCategoryTree', 'events' : 'activate_node.jstree'},
'plugins' : ['state','cookies','ui','html_data'],
'cookies' : { 'keep_selected':true},
'themes': {'icons':false}
});
// return data selected option
$('#jstree').on('changed.jstree', function (e, data) {
console.info(data.node.id);
});
http://jsfiddle.net/4mtyu/764/
我有一些树,这个对象有一些价值。当我重新加载以前选择的页面正确返回,但数据不是。如何在刷新页面后返回数据选择选项?
答案 0 :(得分:0)
好的,我解决了我的问题。
$('#jstree').jstree("get_selected", true);
此代码在重新加载页面后从所选选项返回数据:)