XSLT <xsl:sort>

  • 定义

    <xsl:sort> 元素用于对输出进行排序。
  • <xsl:sort> 元素

    要对输出进行排序,只需在 XSL 文件的 <xsl:for-each> 元素内添加一个 <xsl:sort> 元素:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:template match="/">
        <html>
        <body>
        <h2>我的CD收藏</h2>
        <table border="1">
          <tr bgcolor="#9acd32">
            <th>名称</th>
            <th>艺术家</th>
          </tr>
          <xsl:for-each select="catalog/cd">
            <xsl:sort select="artist"/>
            <tr>
              <td><xsl:value-of select="title"/></td>
              <td><xsl:value-of select="artist"/></td>
            </tr>
          </xsl:for-each>
        </table>
        </body>
        </html>
      </xsl:template>
    </xsl:stylesheet>
    查看转换结果
    注意:select 属性指示要在哪个 XML 元素上排序。