2010-01-04 81 views

回答

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