使用 jQuery 遍历 XML 文档的所有节点
我如何使用 jQuery 遍历未知结构的 XML 文档,以便在每个节点上执行操作?
我正在寻找某种递归函数,通过它我可以访问每个节点,检查子节点,然后重复。
How would I traverse an XML doc of unknown structure, so as to perform an operation on every node, using jQuery?
I'm looking for some sort of recursive function whereby I could access each node, check for sub-nodes, and repeat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找的基本上是深度优先搜索。你可以这样做:
编辑:在这里制作了一个小提琴
What you are looking for is basically a depth-first-search. You could do something like this:
Edit: Made a fiddle here