我正在尝试为 xml 创建一个 xsl 文件,但在 chrome 中它不起作用。
我知道,chrome 仅支持 xsl 的 v1(查看 w3school)。
在 Firefox 中,我的代码正在运行。它目前唯一的测试代码。
xsl
<?xml version="1.0" encoding="ISO-8859-1"?>
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<body style="font-family:Arial;font-size:12pt;background-color:#EEEEEE">
hallo welt
</body>
</html>
这是我的xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="trans.xsl"?>
<doc>
</doc>
我在网上寻找过同样的问题,但没有找到任何有用的东西。