大家都知道,XSL中是没有if else的,那么要想实现if else该怎么办呢?
其实很简单
<xsl:choose> <xsl:when test="position()=1"> </xsl:when> <xsl:otherwise> </xsl:otherwise> </xsl:choose>