0
我使用XML文件作爲我的html頁面的佈局,並使用JavaScript加載它們 這樣的:XML文件之間切換使用JavaScript
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","default.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
我如何2點或更多的佈局之間切換?
我使用javascript/XML將XML加載到HTML這樣的:
document.write('<ul id="horizontal-list">');
var x=xmlDoc.getElementsByTagName("APP");
for (i=0;i<x.length;i++)
{
document.write('<li><a class="app_link" href="depiction.php?app=');
document.write(x[i].getElementsByTagName("NAME")[0].childNodes[0].nodeValue);
document.write('&dl=');
document.write(x[i].getElementsByTagName("DOWNLOAD")[0].childNodes[0].nodeValue);
document.write('&install=');
document.write(x[i].getElementsByTagName("INSTALL")[0].childNodes[0].nodeValue);
document.write('">');
document.write('<label class="app_label">');
document.write(x[i].getElementsByTagName("NAME")[0].childNodes[0].nodeValue);
document.write('</label><img class="applicationIcon" src="');
document.write(x[i].getElementsByTagName("ICON")[0].childNodes[0].nodeValue);
document.write('"/></a></li>');
}
document.write('</ul>');
注:我使用一個CSS樣式表也。
非常感謝! @MIIB – atomikpanda 2013-02-28 22:53:27