XSLT中的内置模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XSLT中的内置模板相关的知识,希望对你有一定的参考价值。
You need to know about [the presence of] these to understand the processing of an XSLT stylesheet.
<!-- Element or root node: Process children --> <xsl:template match="* | /"> <xsl:apply-templates /> </xsl:template> <!-- Element or root in specific mode: Process children in that mode --> <xsl:template match="* | /" mode="m"> <xsl:apply-templates mode="m" /> </xsl:template> <!-- Text or attribute node: Output value --> <xsl:template match="text() | @*"> <xsl:value-of select="." /> </xsl:template> <!-- PI or comment node: Hide from result --> <xsl:template match="processing-instruction() | comment()" />
以上是关于XSLT中的内置模板的主要内容,如果未能解决你的问题,请参考以下文章