http://fason.nease.net/samples/treemenudemo.setup();之前加上
demo.setShowAll(false);

解决方案 »

  1.   

    要是找到XML版本地也告诉我一声哦3KU
      

  2.   

    用http://fason.nease.net/samples/treeview/重写一下expand方法
    var _expand = TreeNode.prototype.expand;
    TreeNode.prototype.expand=function(){
    this.__expand=_expand;
    this.__expand();
    if (this.parentNode==null) return;
    for (var i=0; i<this.parentNode.childNodes.length;i++)
    if (this.parentNode.childNodes[i]!=this)
    this.parentNode.childNodes[i].collapse();//关闭其它兄弟节点
    }