CreateXMLHttp适应IE7

function CreateXMLHttp()

{

  var xmlhttp=null;

  if (window.ActiveXObject)

  {  

    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");  

  } 

   else if (window.XMLHttpRequest)

  {   

    xmlhttp = new XMLHttpRequest();  

   }

  return xmlhttp;

}

你可能感兴趣的:(xmlhttp)