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