XSLT <xsl:sort> 元素

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

在何处放置排序信息

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

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

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

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

XSLT &lt;xsl:sort&gt; - 图1