这些模板在输出上有什么区别?这两个将如何产生输出?我有点困惑理解这一点
<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>