码迷,mamicode.com
首页 > 其他好文 > 详细

火狐 IE 解析xmlDOM 的不同写法

时间:2014-08-11 18:16:13      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:xmldom


//返回结果代码 <result msg="">0000</result>
function getResultCode(retXML){
    
    /*var resultXML = new ActiveXObject("Microsoft.XMLDOM");
    resultXML.async = false;
    resultXML.loadXML(retXML);
    
    if (resultXML.selectSingleNode("//result")!=null){            
        return resultXML.selectSingleNode("//result").nodeTypedValue;            
    }else{
        return "";
    }*/
    try{
        var resultXML;
        if (window.ActiveXObject){  
            resultXML = new ActiveXObject("Microsoft.XMLDOM");  
            resultXML.async = false;    
            resultXML.loadXML(retXML);
            if (resultXML.selectSingleNode("//result")!=null){    
                return resultXML.selectSingleNode("//result").nodeTypedValue;            
            }else{
                return "";
            }
          }else if(document.implementation && document.implementation.createDocument){
               try{    
                resultXML = document.implementation.createDocument(‘‘, ‘‘, null);    
                resultXML.async = false;   
                var oParser=new DOMParser();  
                   resultXML=oParser.parseFromString(retXML,"text/xml");
                   if (resultXML.childNodes[0].childNodes[0].data == "0000"){            
                    return "0000";            
                }else{
                    return "";
                }
            } catch(e){    
                var xmlhttp = new window.XMLHttpRequest();    
                xmlhttp.open("GET",retXML,false);    
                xmlhttp.send(null);    
                resultXML = xmlhttp.responseXML;    
            }   
          }
      }catch(e){
        alert(e.message);  
      }  
}

本文出自 “WOCHA” 博客,请务必保留此出处http://yangzuojie.blog.51cto.com/3627408/1538572

火狐 IE 解析xmlDOM 的不同写法,布布扣,bubuko.com

火狐 IE 解析xmlDOM 的不同写法

标签:xmldom

原文地址:http://yangzuojie.blog.51cto.com/3627408/1538572

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!