我在这里遇到了jsTree。到目前为止,它可以工作,我可以使用[+]图标浏览和扩展节点,并在单击节点时打开页面,但我还是希望它在用户点击某个节点时展开所有直接节点。
我至少看了两个小时但却找不到任何东西。官方网站不是很有帮助,因为他们没有足够的例子,而且没有很好的记录。看看这个,但对我来说也不起作用: http://luban.danse.us/jazzclub/javascripts/jquery/jsTree/reference/_examples/2_operations.html
我甚至没有在firebug中收到错误消息
所以这就是我的代码现在的样子, tree init:
$(function () {
$("#jstree").jstree({
....
通过点击节点触发功能
.delegate("a","click", function (e) {
//click on node
var page_id = $(this).parent().attr("page_id");
var idn = $(this).parent().attr("id").split("_")[1];
/*
dosnt seem to work either...
$(this).jstree("openNode", $("#node_"+idn));
$(this).jstree("openNode", "#node_"+idn);
*/
page = "index.php?page_id="+page_id;
//location.href = page;
})
.bind也没有工作:
$(this).bind("open_node.jstree", function (event, data) {
if((data.inst._get_parent(data.rslt.obj)).length) {
data.inst._get_parent(data.rslt.obj).open_node(this, false);
}
})
有没有人看到我在这里失踪的东西......?
答案 0 :(得分:39)
你需要绑定到select_node.jstree并在触发时调用树实例上的toggle_node:
对于jsTree版本< 3.0:
$("#your_tree").bind("select_node.jstree", function(event, data) {
// data.inst is the tree object, and data.rslt.obj is the node
return data.inst.toggle_node(data.rslt.obj);
});
对于jsTree版本> = 3.0
$("#your_tree").bind("select_node.jstree", function (e, data) {
return data.instance.toggle_node(data.node);
});
答案 1 :(得分:3)
使用更新版本的jsTree(根据jsTree.js 3.0.0),我必须更改@justind提供的代码才能工作:
$("#jstree").bind("select_node.jstree", function (e, data) {
return data.instance.toggle_node(data.node);
});
答案 2 :(得分:1)
我用它(casoUso是页面链接,fInvocaCasoUso是一个函数来进行调用)。
$("#demo1").bind("select_node.jstree", function (e, data)
{
if (data.rslt.obj.attr("casoUso")!=undefined)
{
fInvocaCasoUso(data.rslt.obj.attr("casoUso"));
}
else
{
$("#demo1").jstree("toggle_node",data.rslt.obj);
}
});
如果节点有链接,则打开,否则打开子树。无论如何,你应该能够组合“if”的两面来打开分支并执行你的链接。 也许正在执行:
$("#demo1").jstree("toggle_node",data.rslt.obj);
fInvocaCasoUso(data.rslt.obj.attr("casoUso"));
会这样做......