我想从 XML 文件中获取数据到 JS 变量(我想使用纯 JS,没有 jQuery)。但是我在下载文件时总是出错:
var url = "http://www.w3schools.com/xml/note.xml";
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", url, true);
xmlhttp.onreadystatechange = function(event){ processRequest(event,xmlhttp); };
xmlhttp.send();
function processRequest(event,xmlhttp) {
if(xmlhttp.readyState != 4) return;
alert("status: " +xmlhttp.status);
}
响应 xml 始终为空 - 响应状态为 0。