0

我想解析一个 xml 文档。以下是代码片段:

//Following is on receiving the xml doc  
self.xmlHttpReq.onreadystatechange = function()  
{
  if(self.xmlHttpReq.readyState == 4 && self.xmlHttpReq.status == 200)
  {
    if (navigator.appName == 'Microsoft Internet Explorer')
    {
      xmlDoc = self.xmlHttpReq.responseText;
      var reqst = new RegExp("<d0>0"); //This could only get binary value  
      //How to parse in IE??  

     }
     else  // Moz, Chrome  
     {
       xmlDoc = self.xmlHttpReq.responseXML;  
       xmldat1 = xmlDoc.getElementsByTagName('d0')[0].firstChild.nodeValue;  
       xmldat2 = xmlDoc.getElementsByTagName('d1')[0].firstChild.nodeValue;  
     }
  }  

上面的解析适用于 mozilla 和 chrome,但是对于 IE 我该如何进行解析呢?
注意:我不能使用任何 jquery 技术。

4

1 回答 1

0

解析 IE5 和 IE6 时需要设置此特定行:

xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");

检查此链接:

http://www.w3schools.com/xml/xml_parser.asp

这可能会帮助您更好地理解。

于 2013-08-26T06:35:48.973 回答