·您的位置: 首页 » 资源教程 » 编程开发 » HTML、CSS » XSL中循环的实现

XSL中循环的实现

类别: XML教程  评论数:0 总得分:0

<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>

-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1