使用xslt循环时忽略xml节点集合的第一个元素

时间:2010-01-04 06:54:04

标签: xslt

我正在使用xslt循环遍历xml doucment 我需要忽略第一个元素并在循环时考虑其余元素。

有人可以帮我这个。 我是xslt的新手。

感谢你。 Ramana kumar。

1 个答案:

答案 0 :(得分:5)

<xsl:for-each select="...your xpath...">
    <xsl:if test="position()!=1"> <!-- ignore first node -->
        ..code here...
    </xsl:if>
</xsl:for-each>