我正在使用 jstree_pre1.0_fix_1。我想要预选菜单。
javascript正在关注,
$("#Menu").jstree({
"plugins" : [ "themes", "html_data", "ui"],
"ui" :{ "initially_select" : ["#MENUITEM_012"] },
"themes" : {
"theme" : "custom",
"dots" : false,
"icons" : false,
},
}).
bind("select_node.jstree", function(e,data) {
window.location.href = data.rslt.obj.children("a").attr("href");
});
加载jstree时,它会选择一个节点(#MENUITEM_012),然后更改window.location.href,然后加载jstree并再次选择一个节点。
我该如何摆脱这种情况。