我有以下数据:
<books>
<entry id="8">
<author name="tony-blair">Tony Blair</author>
</entry>
<entry id="9">
<author name="william-campbell">William Campbell</author>
</entry>
</books>
并使用以下模板
<xsl:template match="books/entry">
<xsl:value-of select="author"/>
<xsl:value-of select="ancestor::books/entry/@id"/>
</xsl:template>
我尝试使用ancestor::books/entry/@id
,但它只产生第一个 id。
当我们处于当前位置条目时如何获取父条目ID?