jstree 显示选定的 child 条目

jstree Reveal the selected child entry

我用

$('#jstree-naf').jstree().check_node(value);

选择我需要的条目。但我需要在这之前展示这棵树。

示例(当前):

应该变成:

所以,parents应该被揭示。

感谢帮助

使用_open_to方法如下。检查演示 - Demo Fiddle

$("#jstree-naf").jstree()._open_to( value );

使用select_node(node/id)。选择一个节点将打开树以显示它。如果您不希望它被选中,您可以立即再次取消选择它。