我想根据给定的节点找出 dynatree 中的所有父节点并展开父节点。
function Expand(node){
$(".dynatree-node").each(function(){
if($(this).text() == node){
node.visitParents( function (node) {
node.toggleExpand();
},true);
}
});
}
我做错了什么?如何进行?