Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有人曾经使用过 wijmo 组件?我想做的是从wijmo树的根元素开始,遍历所有元素并将它们作为树结构返回。
谢谢你,克里兹
最好的方法是使用 li 标签上的递归函数遍历 DOM。然后将其转换为 JSON 作为“树对象”。
您可以获得根级元素来开始递归函数,如下所示:
$("#tree").wijtree(); $("#tree > ul > li").each(function(){ yourRecursiveFunc(node) });