请原谅我缺乏js技能......
我正在使用 jsTree 为项目创建导航树,但在获取所选项目的链接以在我的“内容”iframe 中打开时遇到问题。我搜索了高低,但似乎没有任何效果。下面是我现在拥有的 js 代码,它在“导航”框架而不是“内容”框架中打开链接。
$(function () {
$("#navigation").jstree({
"themes" : {
"theme" : "default"
},
"plugins" : [ "themes", "html_data", "ui", "hotkeys" ]
});
$("#navigation").bind("select_node.jstree", function (e, data) {
var href = data.rslt.obj.children("a").attr("href");
// this will load content into a div:
$("#link").load(href);
// this will follow the link:
document.location.href=href;
});
});