发布网友 发布时间:2022-04-22 08:38
共2个回答
热心网友 时间:2023-09-19 07:46
<xsl:stylesheet version="1.0" xmlns:xsl="http:// www .w3.org/1999/XSL/Transform" xmlns:xs="http:// www. w3.org/2001/XMLSchema">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="@*">
<xsl:sort select="name()" />
</xsl:apply-templates>
<xsl:apply-templates select="node()">
<xsl:sort select="name()" />
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
热心网友 时间:2023-09-19 07:46
使用<xsl:sort 排序就可以了,一般如果选择的是数字类型,默认从大到小