html5怎么通过javascript读取,存取xml?

html5的javascript里在不采用ActiveX的方式情况下,通过什么读取xml的
2024-11-17 07:39:35
推荐回答(2个)
回答(1):

function LoadXMLFile(xmlFile) {
var xmlDom = null;
if (window.ActiveXObject) {
xmlDom = new ActiveXObject("Microsoft.XMLDOM");
//xmlDom.loadXML(xmlFile);//如果用的是XML字符串
xmlDom.load(xmlFile); //如果用的是xml文件。
} else if (document.implementation && document.implementation.createDocument) {
var xmlhttp = new window.XMLHttpRequest();
xmlhttp.open("GET", xmlFile, false);
xmlhttp.send(null);
xmlDom = xmlhttp.responseXML.documentElement;//一定要有根节点(否则google浏览器读取不了)
} else {
xmlDom = null;
}
return xmlDom;
}

回答(2):

给你参考