所以这里是我正在编写的代码的javascript文件,这基本上是一个程序的复制粘贴,似乎适用于除了我的每个人的计算机,基本上我从来没有看到警告' 2&#39 ;,xml文件与html和js文件位于同一目录中
var pop=0, countries = 0, continents = 0, cities = 0;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
alert('1');
//alert pops up
xmlhttp.open("GET","mondial.xml",false);
xmlhttp.send(); //error
alert('2');
//this alert does not
xmlDoc=xmlhttp.responseXML;
document.write("<table border='1'>");
var x=xmlDoc.getElementsByTagName("country");
for (i=0;i<x.length;i++)
{
document.write("<tr><td>");
var temp = parseInt((x[i].getElementsByTagName("population")[0].childNodes[0].nodeValue));
pop+= temp
document.write(x[i].getElementsByTagName("name")[0].childNodes[0].nodeValue);
document.write("</td></tr>");
}
document.write("</table>");
alert(pop);