XSLT有什么区别?

时间:2013-08-27 13:16:22

标签: xslt

这些模板在输出上有什么区别?这两个如何产生产出?理解这个我有点困惑

<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>

<xsl:template match="node()|@*">
    <xsl:copy>
    <xsl:apply-templates select="."/>
    </xsl:copy>
    </xsl:template>

0 个答案:

没有答案