gpt4 book ai didi

xslt - 如何从 XSLT 中的子节点读取父节点的属性

转载 作者:行者123 更新时间:2023-12-03 17:13:28 26 4
gpt4 key购买 nike

只想知道如何从 XSLT 中的子节点 (c) 读取父节点 (A) 的属性。代码:

<A attr1="xx">
<b>
<c>
</c>
</b>
</A>

XSLT:
<xsl:template match="c">
<xsl:value-of select="attribute of A node">
</xsl:template>

最佳答案

A实际上不是 c 的父级但是祖先(b 是父级!),但是您要查找的代码是这个

<xsl:value-of select="ancestor::A/@attr1">

(如果 ancestorparent 的直接父级,您可以将 A 替换为 c )

你也可以这样做:
<xsl:value-of select="../../@attr1">

但这会假设 A始终是“祖 parent ”(即 parent 的 parent )。

关于xslt - 如何从 XSLT 中的子节点读取父节点的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27129008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com