XSLT <xsl:sort> 元素

<xsl:sort> 元素用于对结果进行排序。


在何处放置排序信息

如需对结果进行排序,只要简单地在 XSL 文件中的 <xsl:for-each> 元素内部添加一个 <xsl:sort> 元素:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4. <xsl:template match="/">
  5. <html>
  6. <body>
  7. <h2>My CD Collection</h2>
  8. <table border="1">
  9. <tr bgcolor="#9acd32">
  10. <th>Title</th>
  11. <th>Artist</th>
  12. </tr>
  13. <xsl:for-each select="catalog/cd">
  14. <xsl:sort select="artist"/>
  15. <tr>
  16. <td><xsl:value-of select="title"/></td>
  17. <td><xsl:value-of select="artist"/></td>
  18. </tr>
  19. </xsl:for-each>
  20. </table>
  21. </body>
  22. </html>
  23. </xsl:template>
  24. </xsl:stylesheet>

注释:select 属性指示需要排序的 XML 元素。

上面的转换结果类似这样:

查看 XML 文件查看 XSL 文件查看结果