我想解析一个xml doc。 以下是代码段:
//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技术。
答案 0 :(得分:0)
解析IE5和IE6时需要设置此特定行:
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
检查此链接:
http://www.w3schools.com/xml/xml_parser.asp
这可能会帮助您更好地理解。