當我使用本地HTML在Firefox中加載它時,我的JavaScript XML解析代碼工作正常& XML文件,但是當我在Visual Studio 2012(HTML5 JavaScript應用程序)中使用相同的代碼構建我的應用程序它無法解析XML文件。Windows 8 javascript html5應用程序不解析xml
<script type="text/javascript">
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
else {// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET", "pages/home/example.xml", false);
xmlhttp.send();
xmlDoc = xmlhttp.responseXML;
//Content
txt = xmlDoc.getElementsByTagName("Symbol")[0].childNodes[0].nodeValue;
document.write(txt + " ");
什麼是錯誤? – js1568 2013-04-08 20:04:32
爲什麼你不使用winjs庫? – 2013-04-08 20:04:36