当前位置: 首页 > 网络学院 > XML相关教程 > XSL/XSLT > XSLT <xsl:sort> 元素
The <xsl:sort> element is used to sort the output.
<xsl:sort> 元素的作用是:对输出文档进行排列。
Note: <xsl:sort> is always within <xsl:for-each> or <xsl:apply-templates>.
注意:<xsl:sort> 总是写在<xsl:for-each>元素或<xsl:apply-templates>元素里的。
<xsl:sort select="expression" lang="language-code" data-type="text|number|qname" order="ascending|descending" case-order="upper-first|lower-first"/> |
属性 | 值 | 描述 |
---|---|---|
select | XPath-expression | Optional. Specifies which node/node-set to sort on 可选参数。指定需要进行排列操作的节点或节点组 |
lang | language-code | Optional. Specifies which language is to be used by the sort 可选参数。指定排列操作时所需用到的语言 |
data-type | text number qname | Optional. Specifies the data-type of the data to be sorted. Default is "text" 可选参数。指定排列的数据类型。默认为“text” |
order | ascending descending | Optional. Specifies the sort order. Default is "ascending" 可选参数。指定排列顺序。默认为“ascending[升序]” |
case-order | upper-first lower-first | Optional. Specifies whether upper- or lowercase letters are to be ordered first 可选参数。指定是否需要先按照大小写顺序进行排列 |
The example below will sort the output by artist:
下面的案例是根据artist为基准对输出文档进行排列的:
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>My CD Collection</h2> <table border="1"> <tr bgcolor="#9acd32"> <th>Title</th> <th>Artist</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> |