如何使用Xpath(使用XSLT)查询遍历回XML文件中的父节点?

发布于 2024-09-18 13:26:36 字数 136 浏览 8 评论 0原文

让我们有一个深度为 N 的 xml 树。我已经遍历了最后一个节点,这意味着我在最后一个音符上。现在我想从最后一个节点返回到 xml 树中的某个级别(例如 N-3)。

请让我知道 XPATH 查询的语法,以便我可以到达 xml 树中的预期节点。

Let us have a xml tree of depth N. I have traveresd the last node means i am at last note. Now i wanted to go back to some level up (say at N-3) in the xml tree from that last node.

Please let me know the syntax for the XPATH query so that i can reached at intended node in the xml tree.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假装不在乎 2024-09-25 13:26:36

使用

ancestor::node()[3]

../../..

Use:

ancestor::node()[3]

or

../../..
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文