我一直在看其他问题,但我不太明白我做错了什么。我想传递一个参数来仅选择某些结果,但我遇到了参数问题。
html(忽略 IE 部分)
<html>
<head>
<script>
function loadXMLDoc(dname)
{
if (window.XMLHttpRequest)
{
xhttp=new XMLHttpRequest();
}
else
{
xhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",dname,false);
xhttp.send("");
return xhttp.responseXML;
}
function displayResult()
{
xml=loadXMLDoc("f.xml");
xsl=loadXMLDoc("xsl.xsl");
// code for IE
if (window.ActiveXObject)
{
ex=xml.transformNode(xsl);
document.getElementById("example").innerHTML=ex;
}
// code for Mozilla, Firefox, Opera, etc.
else if (document.implementation && document.implementation.createDocument)
{
xsltProcessor=new XSLTProcessor();
xsltProcessor.importStylesheet(xsl);
xsltProcessor.setParameter(null, "testParam", "voo");
// alert(xsltProcessor.getParameter(null,"voc"));
document.getElementById("example").innerHTML = "";
resultDocument = xsltProcessor.transformToFragment(xml,document);
document.getElementById("example").appendChild(resultDocument);
}
}
</script>
</head>
<body onload="displayResult()">
<li><u><a onclick="displayResult();" style="cursor: pointer;">test1</a></u></li>
<div id="example" />
</body>
</html>
xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="vocaroos.xsl"?>
<test>
<artist name="Bert">
<voo>bert1</voo>
</artist>
<artist name="Pet">
<voo>pet1</voo>
</artist>
</test>
xsl
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="testParam"/>
<xsl:template match="/">
<html>
<body >
<h2>Titleee</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Teeeeeest</th>
</tr>
<xsl:for-each select="test/artist">
<tr>
<td><xsl:value-of select="$testParam"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
这是结果(左)
左边是它的作用,右边是我真正想要的。我期待着
<xsl:value-of select="$testParam"/>
会做同样的事情
<xsl:value-of select="voo"/> (right outcome)
因为我做了 setParameter(null, "testParam", "voo"); 在 html 中,但由于某种原因,xsl 不使用“voo”作为选择,而是写入“voo”。
我一直在尝试不同的东西,但没有任何效果。哪里错了?