·您的位置: 首页 » 资源教程 » 编程开发 » HTML、CSS » XSL中实现HTML的表格自动换行

XSL中实现HTML的表格自动换行

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

xml数据如:
<root>
<movie>1</movie>
<movie>2</movie>
<movie>3</movie>
<movie>4</movie>
<movie>5</movie>
<movie>6</movie>
<movie>7</movie>
<movie>8</movie>
<movie>9</movie>
<movie>10</movie>
<movie>11</movie>
<movie>12</movie>
</root>

要达到的效果:
1     2     3     4      5
6     7     8     9     10
11  12

XSL代码:
<?xml version="1.0" encoding="GB2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:variable name="Rows">5</xsl:variable>

<xsl:template match="//root">
  <table>
    <xsl:for-each select="movie[position() mod $Rows=1]">
      <tr>
        <xsl:apply-templates select=".|following-sibling::*[position()&lt;$Rows]"/>
      </tr>
    </xsl:for-each>
  </table>
</xsl:template>

<xsl:template match="movie">
  <td>
    <xsl:value-of select="."/>
  </td>
</xsl:template>

</xsl:stylesheet>

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