为什么JavaScript函数未在XSLT中调用



我尝试调用javascript函数xslt?为什么不称呼它?

http://xsltransform.net/gweamlx

我尝试过这样的尝试

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:jscript="http://www.url.com"
exclude-result-prefixes="msxsl jscript">
    <xsl:output method="html" doctype-public="XSLT-compat" omit-xml-declaration="yes" encoding="UTF-8" indent="yes" />
    <xsl:template match="/">
      <hmtl>
        <head>
          <title>New Version!</title>
        </head>
          <xsl:variable name="sVar" select="'ss'"/>
<xsl:value-of select="jscript:getRegion(string($sVar))"/>
        <msxsl:script language="JScript" implements-prefix="jscript">
function getRegion(sVar){
alert(sVar)
}
</msxsl:script>
      </hmtl>
    </xsl:template>

</xsl:transform>

我从这里参考使用XSL调用用JavaScript编写的用户定义的函数为什么警报未显示

调用从XSLT到外部语言的调用机制,例如Java或JavaScript,完全取决于您使用的XSLT处理器。您尚未说过您正在使用的XSLT处理器,但大概是(a)不支持致电JavaScript的一个,或(b)不支持使用此特定的Microsoft定义的语法来拨打JavaScript。

相关内容

  • 没有找到相关文章

最新更新