摘要:
//针对两种浏览器,分别获取xmlDocument对象 functionloadXML(xmlFile) { varxmlDoc; if(window.ActiveXObject){ xmlDoc=newActiveXObject("Microsoft.XMLDOM"); xmlDoc.async=false; xmlDoc.load(xmlFile); } elseif(document.implementation&&document.implementation.createDocument){ xmlDoc=document.implementati 阅读全文