又没有方法直接判断浏览器确定XMLHttpRequest对象.
或者
function createXmlHttpRequest(){ //创建对象
    try{
      xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
    }catch(e){
      try{
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
      }catch(e2){
        xmlHttp = false;
      }
    }
    if(!xmlHttp && typeof XMLHttpRequest != "undefined")
    {
      xmlHttp = new XMLHttpRequest();
    }  
  }这样的方法在jquery中怎么用呢.