为了明天

时光匆匆流逝, 笑看风起云落 - 流浪的狗2012

导航

适用于IE浏览器及非IE浏览器的xmlhttp脚本

这里记一下, 免得以后忘记了...
传说中来自google的脚本, 不知道是真是假

var xmlHttp=null
try 

    xmlHttp
=new ActiveXObject("Msxml2.XMLHTTP"
}
 
catch(e) 

    
try 
    

        xmlHttp
=new ActiveXObject("Microsoft.XMLHTTP"
    }
 
    
catch(oc)
    

        xmlHttp
=null 
    }
 
}

         
if ( !xmlHttp && typeof XMLHttpRequest != "undefined" ) 

    xmlHttp 
= new XMLHttpRequest() 
}
 
                 
 xmlHttp.open(
"POST", url, false);
 xmlHttp.send(
"");
 result 
= xmlHttp.responseText;

posted on 2005-11-16 08:42  流浪的狗  阅读(1650)  评论(2编辑  收藏  举报