Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个两个状态的jstree。由于我需要制作一个两状态树,因此我无法选择相对于节点的任何其他节点。我想要的是,当我单击特定节点时,还应检查所选节点的所有父节点。
请帮我 ..
绑定到处理程序并传入节点对象。可以向上遍历树以找到所有父节点。下面的示例使用类“jstree-open”,但应用于父级的任何其他类也可以使用。
$(node).parents(".jstree-open").each(function(index){ var theParent=$(this); // Apply operation to each parent });