要“动态”输出元素的值,并以子元素的“数字”作为前缀,您可以使用xsl:value-of select="position()"/>
假设你的输出应该是文本(不是 xml)试试这个:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="text" indent="yes" />
<xsl:strip-space elements="*"/>
<xsl:template match="*" mode ="printChildNr" >
<!-- children of B or C-->
<xsl:text>children of </xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>: </xsl:text>
<xsl:for-each select="*" >
<xsl:text>#</xsl:text>
<xsl:value-of select="position()"/>
<xsl:text> </xsl:text>
<!-- text content of child-->
<xsl:value-of select="text()"/>
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="/*" >
<xsl:apply-templates select="B | C" mode="printChildNr"/>
</xsl:template>
</xsl:stylesheet>
这mode="printChildNr"
不是必需的,但如果您必须扩展 xlt 可能会有所帮助。
输入:
<?xml version="1.0" encoding="utf-8" ?>
<A>
<B>
<b1>a</b1>
<b2>b</b2>
</B>
<C>
<c1>a</c1>
<c2>b</c2>
<c3>b</c3>
</C>
</A>
输出:
children of B:
#1 a
#2 b
children of C:
#1 a
#2 b
#3 b