我正在尝试调用函数。但是它没有显示出来。我的代码是 https://plnkr.co/edit/TN1BN5Yao5Z63RDcBGlN?p=preview
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="dosomething">
<xsl:text>A function that does something</xsl:text>
</xsl:template>
<xsl:call-template name="dosomething"/>
</xsl:stylesheet>
答案 0 :(得分:0)
xsl:call-template
不能位于样式表的顶层。它只能在模板体中使用,例如:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="dosomething">
<xsl:text>A function that does something</xsl:text>
</xsl:template>
<xsl:template match="/">
<xsl:call-template name="dosomething"/>
</xsl:template>
</xsl:stylesheet>