我正在尝试加载本地系统上的 xml 文件。但我总是得到 Network_err。我执行以下操作。
function LoadXmlDoc(dName)
{
var xhttp;
if(window.XMLHttpRequest)
{
xhttp = new XMLHttpRequest();
}
else
{
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
try
{
xhttp.open("GET", "file.xml", false);
xhttp.send();
}
catch(e)
{
window.alert("Unable to load the requested file.");
return;
}
return xhttp.responseXML;
}
如何加载系统上的 xml 文件。所有文件都在我电脑上的同一个文件夹中。谢谢