52,803
社区成员




var xmlHttp;
if(window.ActiveXObject)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest)
{
xmlHttp=new XMLHttpRequest();
}
if(window.ActiveXObject){//IE浏览器
var ieArr=["Msxml2.XMLHTTP.6.0","Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP","Microsoft.XMLHTTP"];
for(var i=0;i <ieArr.length;i++)
{
xml_http= new ActiveXObject(ieArr[i]);//Automation服务器不能创建对象 if(xml_http){
break;
}
}
}
if(window.ActiveXObject){//IE浏览器
xml_http= new ActiveXObject("Microsoft.XMLHTTP");//Automation服务器不能创建对象 if(xml_http){
}