我想加載我的本地系統上的xml文件。但我總是得到Network_err。我做了以下。無法加載JavaScript中的xml文件
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文件。所有文件都在我的電腦上。由於
1)什麼是服務器網址? 2)你試過了嗎? 3)如果您嘗試使用本地文件系統? 。什麼是系統目錄路徑? 。你如何在瀏覽器中嘗試? – kannanrbk
開火錯誤,並看到你正在到達正確的位置。 – AMember
是你的工作? –