Ajax基礎(下)

來源:互聯網
上載者:User

1 <script type="text/javascript"> 2 // var a=1; 3 // alert(window.a); 4 // a屬於window下的一個屬性 5 /*function show() 6 { 7 alert('a') 8 }; 9 window.show()*/10 //alert(a)----會出錯和alert(window.a)----結果是undefined;的區別11 </script>
 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <title>無標題文檔</title> 6 <script> 7 window.onload=function () 8 { 9     var oBtn=document.getElementById('btn1');10     11     oBtn.onclick=function ()12     {13         //1.建立ajax對象14         //IE6以上15         /*var oAjax=new XMLHttpRequest();16         17         alert(oAjax);*/18         19         //IE620         /*var oAjax=new ActiveXObject("Microsoft.XMLHTTP");21         22         alert(oAjax);*/23         var oAjax=null;24         25         if(window.XMLHttpRequest)26         {27             oAjax=new XMLHttpRequest();//相容Firefox,Google瀏覽器28         }29         else30         {31             oAjax=new ActiveXObject("Microsoft.XMLHTTP");//IE內建的控制項32         }33         34         //2.串連伺服器35         //open(方法, url, 是否非同步)get和post方法的選擇需要和後台需求來定;檔案的地址;絕大多數都是非同步傳輸,這樣可以同時做多件事情。36         oAjax.open('GET', 'abc.txt', true);37         38         //3.發送請求39         oAjax.send();40         41         //4.接收返回42         //OnReadyStateChange43         oAjax.onreadystatechange=function ()44         {45             if(oAjax.readyState==4)//4表示完成46             {47                 if(oAjax.status==200)//表示成功48                 {49                     alert('成功:'+oAjax.responseText);//返迴文本內容50                 }51                 else52                 {53                     alert('失敗');54                 }55             }56         };57     };58 };59 </script>60 </head>61 62 <body>63 <input id="btn1" type="button" value="讀取檔案" />64 </body>65 </html>

請求狀態監控 onreadystatechange事件

readyState屬性:

請求狀態

0 (未初始化)還沒有調用open()方法

1 (載入)已調用send()方法,正在發送請求

2 (載入完成)send()方法完成,已收到全部響應內容

3 (解析)正在解析響應內容

4 (完成)響應內容解析完成,可以在用戶端調用了

status屬性:請求結果。成功的話會返回

responseText返迴文件的內容200,失敗會彈出404等數字。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.