我正在使用xslt循环遍历xml doucment 我需要忽略第一个元素并在循环时考虑其余元素。
有人可以帮我这个。 我是xslt的新手。
感谢你。 Ramana kumar。答案 0 :(得分:5)
<xsl:for-each select="...your xpath...">
<xsl:if test="position()!=1"> <!-- ignore first node -->
..code here...
</xsl:if>
</xsl:for-each>