如何使用 xpath 获取完整文档中父节点的位置?
说我有以下xml:
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
</catalog>
我有一个 XSLT 将其转换为 HTML,如下所示(仅片段):
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="cd">
<p>
<xsl:number format="1. "/><br/>
<xsl:apply-templates select="title"/>
<xsl:apply-templates select="artist"/>
</p>
</xsl:template>
<xsl:template match="title">
<xsl:number format="1" select="????" /><br/>
Title: <span style="color:#ff0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
我应该在 ???? 的地方写什么 获取文档中父 cd 标签的位置。我尝试了很多表达方式,但似乎没有任何效果。可能是我做错了。
<xsl:number format="1" select="catalog/cd/preceding-sibling::..[position()]" />
<xsl:number format="1" select="./parent::..[position()]" /><br/>
<xsl:value-of select="count(cd/preceding-sibling::*)+1" /><br/>
我将 2nd 解释为选择当前节点的父轴,然后告诉当前节点的父级位置。为什么它不起作用?这样做的正确方法是什么。
仅供参考:我希望代码打印当前标题标签处理的父 cd 标签的位置。
请有人告诉我该怎么做。