XMLファイルからJS変数にデータをフェッチしたい(jQueryではなく純粋なJSを使用したい)。しかし、ファイルのダウンロード中に常にエラーが発生します。
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です。