XSLTの子ノードから親ノードの属性を読み取る方法を知りたいだけです。コード:
<A>
<b attr1="xx">
<c>
</c>
</b>
</A>
XSLT:
<xsl:template match="c">
<xsl:value-of select="attribute of b node">
</xsl:template>
「..
」を使用してレベルを「上げる」ことができます。そう:
<xsl:value-of select="../@attr1"/>