2

我有以下两个文件。当我尝试在 Internet Explorer 9 中查看 xml 文档时,它不会使用 xslt 文件进行翻译。

我的xml文件

<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="xsl.xslt"?>
<foo>
  <bar>baz</bar>
</foo>

我的 xslt 文件

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
                xmlns:fn="http://www.w3.org/2005/xpath-functions"
>
    <xsl:output method="html"/>
  <xsl:template match="/">
    <html>
      <head>
        <title>
          <xsl:value-of select="/foo/bar"/>
        </title>
      </head>
      <body>

        <!-- It works if i remove the following xsl:value-of tag -->

        <xsl:value-of select="document-uri()"/>
        <div style="color: #ff0000;">
          <xsl:value-of select="/foo/bar/text()"/>
        </div>
        <div style="color: #ff0000;">RED</div>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

当我删除<xsl:value-of select="document-uri()"/>标签时,xml 被正确翻译。我尝试了以下 document-uri 的用法:

  • 文档-uri()
  • 文档-uri('/')
  • 文档-uri('/foo')
  • 文档 uri('foo')
  • fn:文档-uri()
  • fn:document-uri('/')
  • fn:document-uri('/foo')
  • fn:ocument-uri('foo')
4

1 回答 1

3

document-uri()是 XPath 2.0 函数——不是 XPath 1.0 函数。

Internat Explorer 在内部使用 MSXML,它是一个仅限 XSLT 1.0 的处理器,不了解 XPath 2.0。

因此,你运气不好。

仅供参考——目前,5 个主要浏览器中没有一个实现 XSLT 2.0。

如果您想在浏览器中使用 XSLT 2.0,您可以使用Saxon CE来实现。

最近,Michael Kay 宣布 Saxon CE 的下一个版本将是完全开源的——现在可以使用了

于 2013-02-21T03:54:13.870 回答