我有练习在不使用“for-each”的情况下对 xml 文件进行排序。使用我的脚本,我得到了条目,但它们没有排序。
Xml 文件: http ://www.w3schools.com/xml/cd_catalog.xml
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:template match="CD">
<br/>
<xsl:apply-templates select="TITLE" >
<xsl:sort select="TITLE"/>
</xsl:apply-templates>
</xsl:template>
谢谢