鹤一个Javascript树结构库。这是javascript库的一个分支。我分叉了那个项目,因为Tsuri不是Arboreal的直接替代品,因为我已经改变了一些东西并为树结构类添加了一些新方法。用法root = new Tsuri(null, data); root .appendChild(childData1) .appendChild(childData2) .children[0] .appendChild(grandchildData1) .appendChild(grandchildData2);或者,您可以使用parse类方法。 Parse将一个对象作为第一个参数,以及一个可选的字符串,告诉它要查看该对象中的children数组的哪个属性;默认情况下,children属性字符串只是“children”。