XSLT中使用通配符的模板逻辑

时间:2019-05-03 12:47:54

标签: xml xslt apply-templates

我试图了解xslt文件中的以下模板逻辑。任何人都可以帮助获得完整的逻辑。

     <xsl:template match="/">
    <xsl:apply-templates />
</xsl:template>
<xsl:template match="*">
    <xsl:element name="{local-name()}">
        <xsl:apply-templates select="@* | node()" />
    </xsl:element>
</xsl:template>
<xsl:template match="@* | text() | comment() | processing-instruction()">
    <xsl:copy />
</xsl:template>

预先感谢!

0 个答案:

没有答案