初始化XMLHttpRequest对象

来源:互联网 发布:软件使用合同 编辑:程序博客网 时间:2024/06/05 21:40

function  createXmlHttpRequest(){

   varxmlHttp;

   try{   //Firefox, Opera 8.0+, Safari

           xmlHttp=newXMLHttpRequest();

    }catch (e){

           try{   //Internet Explorer

                  xmlHttp=newActiveXObject("Msxml2.XMLHTTP");

            }catch (e){

                  try{

                         xmlHttp=newActiveXObject("Microsoft.XMLHTTP");

                  }catch (e){} 

           }

    }

   returnxmlHttp;

 }

原创粉丝点击