我正在使用jstree 1.0,除了在页面之间维护树状态外,一切都很好。
代码是:
$(document).ready(function(){
$("#treeview").jstree({
"themes" : {
"theme" : "default",
"dots" : false,
"icons" : false
},
"cookies": { "cookie_options" : { path : "/" } },
"ui" : {
"selected_parent_close" : "false"
},
"core": {
"animation": 500
},
"plugins" : [ "themes", "html_data", "ui", "cookies" ]
}).bind("select_node.jstree", function(e, data)
{
var href = data.rslt.obj.children("a").attr("href");
$("#contents").load(href);
if (Right(window.location.href,href.length) == [href]) {
return;
}
else {
window.location=[href];
}
})
});
当我检查实际的饼干时,它们是空的,我不知道为什么不这样做。看起来树项目链接到其他页面的事实意味着树在接收到已经点击LI的事件之前导航离开,因此没有写入cookie。我提到了this树代码的其他stackoverflow答案。我正在为每个LI使用一个ID。
如果您能在此处查看问题以及如何将树状态信息写入Cookie,请与我们联系。
答案 0 :(得分:2)
修正了问题。原来在我的UL中定义id的语法错误。时间丢失,但值得一试。