XMLHttpRequest的相容代碼 ajax 相容建立代碼

來源:互聯網
上載者:User
提示:您可以先修改部分代碼再運行

<script>function HttpRequest(){if(this==window)throw new Error(0,"HttpRequest is unable to call as a function.")var me=this; var asyncFlag=false; var typeFlag=false;var r;function onreadystatechange(){if(me.onreadystatechange)me.onreadystatechange.call(r);if(r.readyState==4){if(Number(r.status)>=300){if(me.onerror)me.onerror.call(r,new Error(0,"Http error:"+r.status+" "+r.statusText));if(typeFlag)r.onreadystatechange=Function.prototype;else r.onReadyStateChange=Function.prototype;r=null;return;}me.status=r.status;me.statusText=r.statusText;me.responseText=r.responseText;me.responseBody=r.responseBody;me.responseXML=r.responseXML;me.readyState=r.readyState;if(typeFlag)r.onreadystatechange=Function.prototype;else r.onReadyStateChange=Function.prototype;r=null;if(me.onfinish)me.onfinish();}}function creatHttpRequest(){var e;try{r=new window.XMLHttpRequest();typeFlag=true;} catch(e) {var ActiveXName=['MSXML2.XMLHttp.6.0','MSXML2.XMLHttp.3.0','MSXML2.XMLHttp.5.0','MSXML2.XMLHttp.4.0','Msxml2.XMLHTTP','MSXML.XMLHttp','Microsoft.XMLHTTP']function XMLHttpActiveX(){var e;for(var i=0;i<ActiveXName.length;i++){try{var ret=new ActiveXObject(ActiveXName[i]);typeFlag=false;} catch(e) {continue;}return ret;}throw {"message":"XMLHttp ActiveX Unsurported."};}try{r=new XMLHttpActiveX();typeFlag=false;} catch(e) {throw new Error(0,"XMLHttpRequest Unsurported.");}}}creatHttpRequest();this.abort=function(){r.abort();}this.getAllResponseHeaders=function(){r.getAllResponseHeaders();}this.getResponseHeader=function(Header){r.getResponseHeader(bstrHeader);}this.open=function(Method,Url,Async,User,Password){asyncFlag=Async;try{r.open(Method,Url,Async,User,Password);} catch(e) {if(me.onerror)me.onerror(e);else throw e;}}this.send=function(Body){try{if(typeFlag)r.onreadystatechange=onreadystatechange;else r.onReadyStateChange=onreadystatechange;r.send(Body);//alert("sended");if(!asyncFlag){this.status=r.status;this.statusText=r.statusText;this.responseText=r.responseText;this.responseBody=r.responseBody;this.responseXML=r.responseXML;this.readyState=r.readyState;if(typeFlag)r.onreadystatechange=Function.prototype;else r.onReadyStateChange=Function.prototype;r=null;}} catch(e) {if(me.onerror)me.onerror(e);else throw e;}//alert("sended");}this.setRequestHeader=function(Name,Value){r.setRequestHeader(Name,Value);}}window.onload=function(){var request=new HttpRequest();request.onfinish=function(){alert(this.responseText);}request.onerror=function(e){alert(e.message);}request.open("get","http://bbs./",true);request.send(null);}</script>
提示:您可以先修改部分代碼再運行
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.