我有一个每天都在变化的XML文件(http://imenicka.cz/xml/menicko.php?hash=fccab45d85b39726611ab433f66263a7&restaurace=430)。
<script>
if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET", "http://imenicka.cz/xml/menicko.php?hash=fccab45d85b39726611ab433f66263a7&restaurace=430", false);
xmlhttp.send();
xmlDoc = xmlhttp.responseXML;
document.write("<table>");
var x = xmlDoc.getElementsByTagName("MENICKO");
for (i = 0; i < x.length; i++) {
document.write("<tr><td>");
document.write(x[i].getElementsByTagName("TYP")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].getElementsByTagName("PORADI")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].getElementsByTagName("TEXT")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].getElementsByTagName("CENA")[0].childNodes[0].nodeValue);
document.write("</td></tr>");
}
document.write("</table>")
</script>
使用这个脚本,我需要将它导入到html文件中,但它不起作用。我尝试了其他脚本,但迄今为止没有一个对我有效。有人可以帮帮我吗?