用XSL转换XML文件到PDF,数字排序命令怎么写

发布网友 发布时间: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 排序就可以了,一般如果选择的是数字类型,默认从大到小

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com