XSL中循环的实现

发表于:2007-06-30来源:作者:点击数: 标签:

<xsl:template match="/">
  <xsl:call-template name="loop">
    <xsl:with-param name="Count">5</xsl:with-param>
  </xsl:call-template>
</xsl:template>

<xsl:template name="loop">
  <xsl:param name="Count"/>
  <xsl:if test="$Count&lt;1"><xsl:value-of select="@#finish@#"/></xsl:if>
  <xsl:if test="$Count&gt;=1">
    <xsl:value-of select="$Count"/>
    <xsl:call-template name="loop">
      <xsl:with-param name="Count"><xsl:value-of select="number($Count)-1"/></xsl:with-param>
    </xsl:call-template>
  </xsl:if>
</xsl:template>

原文转自:http://www.ltesting.net