日期:2014-05-20  浏览次数:20752 次

ajax...用firefox正常,ie不正常
源码如下:
var   http_request=false;
    function   send_request(url){//初始化,指定处理函数,发送请求的函数
        http_request=false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest){//Mozilla浏览器
  http_request=new   XMLHttpRequest();
  if(http_request.overrideMimeType){//设置MIME类别
      http_request.overrideMimeType( "text/xml ");
  }
}
else   if(window.ActiveXObject){//IE浏览器
  try{
    http_request=new   ActiveXObject( "Msxml2.XMLHttp ");
  }catch(e){
    try{
    http_request=new   ActiveXobject( "Microsoft.XMLHttp ");
    }catch(e){}
  }
        }
if(!http_request){//异常,创建对象实例失败
  window.alert( "创建XMLHttp对象失败! ");
  return   false;
}
http_request.onreadystatechange=processrequest;
//确定发送请求方式,URL,及是否同步执行下段代码
        http_request.open( "GET ",url,true);
http_request.send(null);
    }
    //处理返回信息的函数
    function   processrequest(){
      if(http_request.readyState==4){//判断对象状态
          if(http_request.status==200){//信息已成功返回,开始处理信息
    document.getElementById(reobj).innerHTML=http_request.responseText;
  }
  else{//页面不正常
    alert( "您所请求的页面不正常! ");
  }
      }
    }
    function   getclass(obj){
      var   pid=document.form1.select1.value;
      document.getElementById(obj).innerHTML= " <option> loading... </option> ";
      send_request( 'doclass.php?pid= '+pid);
      reobj=obj;
    }

------解决方案--------------------
http_request=new ActiveXobject( "Microsoft.XMLHttp ");错了吧

http_request=new ActiveXObject( "Microsoft.XMLHTTP ");
------解决方案--------------------
var http = getHttpObject();
function getHttpObject(){
var xmlhttp = false;
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
if(xmlhttp.overrideMimeType){
xmlhttp.overrideMimeType( 'text/xml ');
}
}
else{
try{
xmlhttp = new ActiveXObject( "Msxml2.XMLHTTP ");
}catch(e){
try{
xmlhttp = new ActiveXObject( "Microsoft.XMLHTTP ");
}catch(e){
xmlhttp = false;
}
}
}
return xmlhttp;
}

把你获得xmlhttp对象换成这个试试
------解决方案--------------------
else if(window.ActiveXObject){//IE浏览器
try{
http_request=new ActiveXObject( "Msxml2.XMLHttp ");
}catch(e){
try{
http_request=new ActiveXobject( "Microsoft.XMLHttp ");
}catch(e){}
}
改成这样试试:
else if(window.ActiveXObject)
{
http_request=new ActiveXObject( "Microsoft.XMLHTTP ");
}