我有以下两个文件。当我尝试在 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')