1

http://wwwendt.de/tech/dynatree/index.html

それは言う

toDict()
    Convert the tree into a JavaScript object.
    See node.toDict() for details. 

後でそのオブジェクトからツリーを初期化する方法はありますか? ありがとう。

4

1 に答える 1

1

結果のdictはに渡すことができますnode.addChild()

基本的にこれを行うコピー/貼り付けの例を見てください。

var cb = sourceNode.toDict(..);
targetNode.addChild(cb);
于 2010-06-13T09:15:38.537 に答える