我不明白为什么 xsl:param 给我一个错误“关键字 xsl:param 可能无法在命名空间http://www.w3.org/TR/WD-xsl中使用。” 在以下带有样式表声明的 xsl 代码中。
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="uri:xsl">
给定xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
<cd n="a">
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
和 xsl 代码
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="uri:xsl">
<xsl:param name="test" select="'a'"/>
<xsl:template match="/">
<html>
<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">
<xsl:choose>
<xsl:when match=".[@n = $test]">
<tr>
<td><xsl:value-of select="title" /></td>
<td><xsl:value-of select="artist" /></td>
</tr>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我无法更改样式表声明。查看 w3c 文档,我可以将 param 声明为样式表的子项,并且不需要在模板中。