<xsl:template match="HtmlCode">
<xsl:copy-of select="child::*|text()"/>
</xsl:template>
<xsl:call-template name="HappyFriend">
<xsl:with-param name="text" select="'i am a friggin' RRRRROOOOOOOVVVERRRRR~~'"/>
</xsl:call-template>
<xsl:template name="HappyFriend">
<xsl:param name="text"/>
<HtmlCode>
<span> <%="text"%> </span>
</HtmlCode>
<xsl:template>
不知何故,我不断遇到 XSLT 问题......我要做的就是让变量“文本”的值,即“我是一个 frigggin RRROVERRR”在“HappyFriend”中出现在 ai am a frigggggin' RRROOOVVVERRRR~~ “ 模板。
我究竟做错了什么?