我正在尝试调用函数。但是它不显示。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>
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>