Ajax对象XMLHttpRequest(w3c+ie7以上),和ie对象ActiveXObject。
想要兼容ie6,用到以下代码(如果ie6已经彻底淘汰了,各位就不用看了)。
function createXML(){
if(typeof XMLHttpRequest!='undefind'){
return new XMLHttpRequest();
}else if(typeof ActiveXObject!='undefind'){
try{
return new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
try{
return new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){
}
}
}
}
Msxml2.XMLHTTP和Microsoft.XMLHTTP是版本信息(Msxml.XMLHTTP,Msxml.XMLHTTP3.0和Msxml.XMLHTTP4.0)