Ajax 原理图解

前端之家收集整理的这篇文章主要介绍了Ajax 原理图解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

传送门:http://www.nowamagic.net/ajax/ajax_PicForAjaxPrinciple.php


Ajax其实已经使用很久了,但一直也没有时间正经的找本书系统看看,最近时间比较充裕可以好好补习一下了。本系列是基于Ajax和PHP结合进行讲解,主要是想和正在学习或想要学习Ajax的朋友分享下经验。希望大家多多拍砖共同交流。

众所周知,Ajax并不是一个新生的语言,它是一系列语言的结合体:HTML/XHTML、CSS、DOM、XML、XSLT、XMLHttp、JavaScript。可以说Ajax涉及的知识面的确是很广的,在Web开发中为我们提供了很方便的交互式用户体验模式。以往我们浏览网页的原理是由Client向Server提交页面申请,再由Server将申请通过HTTP传回给Client生成浏览页面

使用Ajax后的工作原理如下图,可见通过Ajax在用户交互方面有了很大改进,用户可以不用为提交了Form而长时间等待服务器应答,而且通过Ajax也可以开发出华丽的Web交互页面

在使用Ajax时,需要创建XMLHttpRequest对象,不同浏览器的创建方式略有不同:

  1. <scriptlanguage="javascript">
  2. varxmlHttp=null;
  3. try
  4. {
  5. //Firefox,Opera8.0+,Safari非IE浏览器
  6. xmlHttp=newXMLHttpRequest();
  7. }
  8. catch(e)
  9. {
  10. //IE浏览器
  11. try
  12. {
  13. xmlHttp=newActiveXObject("Msxml2.XMLHTTP");
  14. }
  15. catch(e)
  16. {
  17. xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
  18. }
  19. }
  20. </script>

在利用Ajax向服务器提交请求时,需要先确定三点:

@H_404_167@
  • 使用GET或POST方式提交请求?
  • 需要请求的页面(Page)或代码(Script)?
  • 将请求的页面代码加载到页面什么位置?
    1. functionmakerequest(serverPage,objID)
    2. {
    3. //将要被替换的页面位置obj
    4. varobj=document.getElementById(objID);
    5. //发出页面(serverPage)请求
    6. xmlhttp.open("GET",serverPage);
    7. xmlhttp.onreadystatechange=function()
    8. {
    9. if(xmlhttp.readyState==4&&xmlhttp.status==200)
    10. {
    11. //将服务器返回的信息替换到页面位置obj
    12. obj.innerHTML=xmlhttp.responseText;
    13. }
    14. }
    15. xmlhttp.send(null);
    16. }

    其中readyState表示当前对象状态,分为0~4的类别,0: uninitialized,1: loading,2: loaded,3: interactive,4: complete。status表示HTTP响应状态,常见状态有200 OK,304 Not Modified,401 Unauthorized,403 Forbidden,404 Not Found,500 Internal Server Error,503 Service Unavailable。代码中认定readyState==4和status==200为正常状态。

    一个简单的例子

    下面再来看一个简单的代码,当用户点击Page1~4时,相应的链接文件将会显示在My Webpage页面中。

    1. <html>
    2. <head>
    3. <title>AjaxSample</title>
    4. <scripttype="text/javascript">
    5. varxmlHttp=null;
    6. try
    7. {
    8. xmlHttp=newXMLHttpRequest();
    9. }
    10. catch(e)
    11. {
    12. try
    13. {
    14. xmlHttp=newActiveXObject("Msxml2.XMLHTTP");
    15. }
    16. catch(e)
    17. {
    18. xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
    19. }
    20. }
    21. functionmakerequest(serverPage,objId)
    22. {
    23. varobj=document.getElementById(objId);
    24. xmlHttp.open("GET",serverPage);
    25. xmlHttp.onreadystatechange=function()
    26. {
    27. if(xmlHttp.readyState==4&&xmlHttp.status==200)
    28. {
    29. obj.innerHTML=xmlHttp.responseText;
    30. }
    31. }
    32. xmlHttp.send(null);
    33. }
    34. </script>
    35. <bodyonLoad="makerequest('content1.html','hw')">
    36. <divalign="center">
    37. <h1>MyWebpage</h1>
    38. <ahref="content1.html"onClick="makerequest('content1.html','hw');returnfalse;">Page1</a>
    39. <ahref="content2.html"onClick="makerequest('content2.html','hw');returnfalse;">Page2</a>
    40. <ahref="content3.html"onClick="makerequest('content3.html','hw');returnfalse;">Page3</a>
    41. <ahref="content4.html"onClick="makerequest('content4.html','hw');returnfalse;">Page4</a>
    42. //这里就是将要替换content1~4.html的位置。
    43. <divid="hw"></div>
    44. </div>
    45. </body>
    46. </html>

    猜你在找的Ajax相关文章