TShopping

標題: javascript xmlhttp 回傳值訊息表示 [打印本頁]

作者: woff    時間: 2013-6-7 17:23
標題: javascript xmlhttp 回傳值訊息表示
The onreadystatechange eventWhen a request to a server is sent, we want to perform some actions based on the response.
The onreadystatechange event is triggered every time the readyState changes.
The readyState property holds the status of the XMLHttpRequest.
Three important properties of the XMLHttpRequest object:
Property
Description
onreadystatechangeStores a function (or the name of a function) to be called automatically each time the readyState property changes
readyStateHolds the status of the XMLHttpRequest. Changes from 0 to 4:
0: request not initialized
1: server connection established
2: request received
3: processing request
4: request finished and response is ready
status200: "OK"
404: Page not found
In the onreadystatechange event, we specify what will happen when the server response is ready to be processed.
When readyState is 4 and status is 200, the response is ready:
  1. xmlhttp.onreadystatechange=function()
  2.   {
  3.   if (xmlhttp.readyState==4 && xmlhttp.status==200)
  4.     {
  5.     document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
  6.     }
  7.   }

複製代碼

作者: qoocoo123    時間: 2013-11-14 00:43
謝謝版主啊!
作者: boy90400    時間: 2013-11-14 00:43
HOHO~~~~~~  




歡迎光臨 TShopping (http://www.tshopping.com.tw/) Powered by Discuz! X3.2