0%

JS解析xml

JS解析xml代码

废话不多说,贴代码了。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
function loadXML(xmlUrl) {
try { //IE
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
} catch (e) {
try { //Firefox, Mozilla, Opera, etc.
xmlDoc = document.implementation.createDocument("", "", null);
} catch (e) {
alert(e.message)
}
}
try {
xmlDoc.async = false;
xmlDoc.load(xmlUrl);
} catch (e) {
try { //Chrome
let xmlhttp = new window.XMLHttpRequest();
xmlhttp.open("GET", xmlUrl, false);
xmlhttp.send(null);
xmlDoc = xmlhttp.responseXML;
console.log(xmlDoc.documentElement);
} catch (e) {
alert(e.message)
}
}
return xmlDoc.documentElement;
}

注意:chrome本地加载xml会出现跨域的问题,所以需要给chrome添加启动属性--args --disable-web-security --user-data-dir,再行测试。(不过xml已经过时,非必要时推荐使用JSON。);

bulb