XMLHttpRequest 对象

XMLHttpRequest 对象提供了在网页加载后与服务器进行通信的方法。

什么是 XMLHttpRequest 对象?

XMLHttpRequest 对象是开发者的梦想,因为您能够:

  • 在不重新加载页面的情况下更新网页
  • 在页面已加载后从服务器请求数据
  • 在页面已加载后从服务器接收数据
  • 在后台向服务器发送数据

所有现代的浏览器都支持 XMLHttpRequest 对象。

实例

当键入文本时与服务器进行 XML HTTP 通信

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. xmlHttp=null;
  5. function showHint(str)
  6. {
  7. if (str.length==0)
  8. {
  9. document.getElementById("txtHint").innerHTML="";
  10. return;
  11. }
  12. try
  13. {// Firefox, Opera 8.0+, Safari, IE7
  14. xmlHttp=new XMLHttpRequest();
  15. }
  16. catch(e)
  17. {// Old IE
  18. try
  19. {
  20. xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  21. }
  22. catch(e)
  23. {
  24. alert ("Your browser does not support XMLHTTP!");
  25. return;
  26. }
  27. }
  28. url="/ajax/gethint.asp?q=" + str;
  29. url=url+"&sid="+Math.random();
  30. xmlHttp.open("GET",url,false);
  31. xmlHttp.send(null);
  32. document.getElementById("txtHint").innerHTML=xmlHttp.responseText;
  33. }
  34. </script>
  35. </head>
  36. <body><form>
  37. First Name:
  38. <input type="text" id="txt1"
  39. onkeyup="showHint(this.value)">
  40. </form><p>Suggestions: <span id="txtHint"></span></p> </body>
  41. </html>

创建 XMLHttpRequest 对象

通过一行简单的 JavaScript 代码,我们就可以创建 XMLHttpRequest 对象。

在所有现代浏览器中(包括 IE 7):

  1. xmlhttp=new XMLHttpRequest()

在 Internet Explorer 5 和 6 中:

  1. xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")

实例

  1. <script type="text/javascript">
  2. var xmlhttp;
  3. function loadXMLDoc(url)
  4. {
  5. xmlhttp=null;
  6. if (window.XMLHttpRequest)
  7. {// code for all new browsers
  8. xmlhttp=new XMLHttpRequest();
  9. }
  10. else if (window.ActiveXObject)
  11. {// code for IE5 and IE6
  12. xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  13. }
  14. if (xmlhttp!=null)
  15. {
  16. xmlhttp.onreadystatechange=state_Change;
  17. xmlhttp.open("GET",url,true);
  18. xmlhttp.send(null);
  19. }
  20. else
  21. {
  22. alert("Your browser does not support XMLHTTP.");
  23. }
  24. }
  25.  
  26. function state_Change()
  27. {
  28. if (xmlhttp.readyState==4)
  29. {// 4 = "loaded"
  30. if (xmlhttp.status==200)
  31. {// 200 = OK
  32. // ...our code here...
  33. }
  34. else
  35. {
  36. alert("Problem retrieving XML data");
  37. }
  38. }
  39. }
  40. </script>

注释:onreadystatechange 是一个事件句柄。它的值 (state_Change) 是一个函数的名称,当 XMLHttpRequest 对象的状态发生改变时,会触发此函数。状态从 0 (uninitialized) 到 4 (complete) 进行变化。仅在状态为 4 时,我们才执行代码。

为什么使用 Async=true ?

我们的实例在 open() 的第三个参数中使用了 "true"。

该参数规定请求是否异步处理。

True 表示脚本会在 send() 方法之后继续执行,而不等待来自服务器的响应。

onreadystatechange 事件使代码复杂化了。但是这是在没有得到服务器响应的情况下,防止代码停止的最安全的方法。

通过把该参数设置为 "false",可以省去额外的 onreadystatechange 代码。如果在请求失败时是否执行其余的代码无关紧要,那么可以使用这个参数。

更多实例

XML / ASP

您也可以把 XML 文档打开并发送到服务器上的 ASP 页面,分析此请求,然后传回结果。

  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. xmlHttp=null;
  5. if (window.XMLHttpRequest)
  6. {// code for IE7, Firefox, Opera, etc.
  7. xmlHttp=new XMLHttpRequest();
  8. }
  9. else if (window.ActiveXObject)
  10. {// code for IE6, IE5
  11. xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  12. }
  13. if (xmlHttp!=null)
  14. {
  15. xmlHttp.open("GET", "note.xml", false);
  16. xmlHttp.send(null);
  17. xmlDoc=xmlHttp.responseText;
  18.  
  19. xmlHttp.open("POST", "demo_dom_http.asp", false);
  20. xmlHttp.send(xmlDoc);
  21. document.write(xmlHttp.responseText);
  22. }
  23. else
  24. {
  25. alert("Your browser does not support XMLHTTP.");
  26. }
  27. </script>
  28. </body>
  29. </html>

ASP 页面,由 VBScript 编写:

  1. <%
  2. set xmldoc = Server.CreateObject("Microsoft.XMLDOM")
  3. xmldoc.async=false
  4. xmldoc.load(request)
  5.  
  6. for each x in xmldoc.documentElement.childNodes
  7. if x.NodeName = "to" then name=x.text
  8. next
  9. response.write(name)
  10. %>

通过使用 response.write 属性把结果传回客户端。

XMLHttpRequest 对象是 W3C 的标准吗?

任何 W3C 推荐标准均未规定 XMLHttpRequest 对象。

不过,W3C DOM Level 3 的 "Load and Save" 规范包含了一些相似的功能性,但是还没有任何浏览器实现它们。

参阅

XML DOM 参考手册: XMLHttpRequest 对象