我遇到了这个奇怪的问题。XSL 不适用于 xml。这是我的 xml 和 xsl 代码:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xsl-stylesheet type= "text/xsl" href= "w3c.xsl"?>
<catalog>
<cd>
<title>Greatest Hits</title>
<artist>Dolly Parton</artist>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<year>1982</year>
</cd>
<cd>
<title>Eros</title>
<artist>Eros Ramazzotti</artist>
<country>EU</country>
<company>BMG</company>
<price>9.90</price>
<year>1997</year>
</cd>
<cd>
<title>Romanza</title>
<artist>Andrea Bocelli</artist>
<country>EU</country>
<company>Polydor</company>
<price>10.80</price>
<year>1996</year>
</cd>
</catalog>
这是我的 xsl:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
笔记:
我从 W3C 获取了这段代码,因此它是一个有效的代码。我用谷歌搜索了很多,但找不到任何有效的解决方案。我使用了 ie,firefox 和 chrome 在其中任何一个中都不起作用。我已经在我的远程服务器也不起作用。我得到的错误是“此 XML 文件似乎没有任何与之关联的样式信息。文档树如下所示。”。发生同样的错误。在 href 我已经尝试了所有从完整路径到文件名的可能链接。我也尝试过使用 --allow-file-access-from-files 的 chrome 但不起作用。请帮我解决这个问题。