一、onreadystatechange事件
當請求被傳送到伺服器時,我們需要執行一些基於回應的任務。
每當 readyState 改變時,就會觸發 onreadystatechange 事件。
readyState 屬性存有 XMLHttpRequest 的狀態資訊。
下面是XMLHttpRequest 物件的三個重要的屬性:
在onreadystatechange 事件中,我們規定當伺服器回應已做好處理的準備時所執行的任務。
當 readyState 等於 4 且狀態為 200 時,表示回應已就緒
註:onreadystatechange 事件被觸發 5 次(0 - 4),對應著 readyState 的每個變更。
二、使用Callback函數
callback 函數是一種以參數形式傳遞給另一個函數的函數。
如果您的網站上存在多個 AJAX 任務,那麼您應該為建立 XMLHttpRequest 物件編寫一個標準的函數,並為每個 AJAX 任務呼叫該函數。
此函數呼叫應該包含URL 以及發生onreadystatechange 事件時執行的任務(每次呼叫可能不盡相同):
下面示範一個頁面有兩個AJAX任務的情況:
程式碼5_1.php
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script type="text/javascript"> var xmlhttp; //标准函数 function loadXMLDoc(url,cfunc) { if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=cfunc; xmlhttp.open("GET",url,true); xmlhttp.send(); } function myFunction1() { loadXMLDoc("5_2.txt",function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("myDiv1").innerHTML=xmlhttp.responseText; } }); } function myFunction2() { loadXMLDoc("5_3.txt",function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("myDiv2").innerHTML=xmlhttp.responseText; } }); } </script> </head> <body> <!-- 按下按钮,调用myFunction1() --> <div id="myDiv1"><h2>Let AJAX change this text</h2></div> <button type="button" onclick="myFunction1()">NO:1 通过 AJAX 改变内容</button> <hr/> <!-- 按下按钮,调用myFunction2() --> <div id="myDiv2"><h2>Let AJAX change this text</h2></div> <button type="button" onclick="myFunction2()">NO:2通过 AJAX 改变内容</button> </body> </html>
#程式碼5_2.txt
AJAX is not a programming language. It is just a technique for creating better and more interactive web applications.
#1_3.txt
AJAX 不是新的编程语言,而是一种使用现有标准的新方法。############ #############下一節