为什么在xslt中没有调用函数?

时间:2016-12-08 06:33:01

标签: jquery xslt xslt-1.0 xslt-2.0

我正在尝试调用函数。但是它没有显示出来。我的代码是 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>

1 个答案:

答案 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>