これは私のxmlファイルです:-
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="final.xsl"?>
<root>
<child1 entity_id = "1" value= "Asia">
<child2 entity_id = "2" value = "india">
<child3 entity_id = "3" value = "Gujarat">
<child5 entity_id = "5" value ="Rajkot"></child5>
</child3>
<child4 entity_id = "4" value = "Rajshthan">
<child6 entity_id = "6" value = "Ajmer"></child6>
</child4>
</child2>
</child1>
</root>
これは私のXSLTファイルです:-
<xsl:template match="*">
<xsl:for-each select="//child2">
<xsl:value-of select="*"/>
<xsl:value-of select="@value" />
</xsl:for-each>
これは私のhtmlコードです:-
<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("final.xml");
xsl=loadXMLDoc("books05.xsl");
// code for IE
if (window.ActiveXObject)
{
xml.addParameter("rss", test);
ex=xml.transformNode(xsl);
document.getElementById("load").innerHTML=ex;
}
// code for Mozilla, Firefox, Opera, etc.
else if (document.implementation && document.implementation.createDocument)
{
xsltProcessor=new XSLTProcessor();
xsltProcessor.importStylesheet(xsl);
resultDocument = xsltProcessor.transformToFragment(xml,document);
document.getElementById("load").appendChild(resultDocument);
}
}
</script>
<body onload="displayResult()">
<div id="load" />
</body>
出力は次のとおりです:-
India
今、私はインドでクリックイベントを設定したいです...インドをクリックしてからその表示グジャラートとラジシュタンのような子要素...グジャラートとラジシュタンを表示するときにインドを非表示にします...