从XSL文件调用Javascript时出错

时间:2013-07-23 09:00:04

标签: javascript xslt

我试图从我的XSL文件中调用javascript,但它无法运行..

想知道: 1.我的XSL文件有问题......(见下文) 2. 在使用Javascript运行XSL之前是否要进行任何系统配置?

IE 9.0正用于测试这个原型XSL。

以下是XSL文件的内容:

<?xml version='1.0' ?>  
<xsl:stylesheet version="1.0"   
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  
xmlns:lxslt="http://xml.apache.org/xslt"  
xmlns:result="http://www.example.com/results"  
extension-element-prefixes="result" >  

   <xsl:output method="html" indent="yes"/>  


   <lxslt:component prefix="result" functions="myParse">  
    <lxslt:script lang="javascript">  
        function myParse()   
        {  
            return "just testing....";  
        }  
    </lxslt:script>  
  </lxslt:component>  

    <xsl:template match="/">        

        <xsl:for-each select="comment/MyObject">  

            <xsl:variable name="temp" select="@objectInformation" />  

             <xsl:variable name="temp2">  
                <xsl:value-of>  
                    <script type="text/javascript">  
                        result:myParse()  
                    </script>      
                </xsl:value-of>                  
            </xsl:variable>  

            <xsl:value-of select="string($temp2)"/>  

        </xsl:for-each>  

    </xsl:template>  

</xsl:stylesheet>  

1 个答案:

答案 0 :(得分:0)

我相信在这种情况下调用函数的语法是:

<xsl:value-of select="result:myParse()" />    

或者你可以在这种情况下这样做:

<xsl:variable name="temp2" select="result:myParse()" />  

你确定这种情况下的命名空间不应该是http://xml.apache.org/xalan吗?