当前位置:Gxlcms > AJAX > Ajax的使用四大步骤

Ajax的使用四大步骤

时间:2021-07-01 10:21:17 帮助过:14人阅读

什么是ajax?

ajax(异步javascript xml) 能够刷新局部网页数据而不是重新加载整个网页。

如何使用ajax?

第一步,创建xmlhttprequest对象,var xmlhttp =new XMLHttpRequest();XMLHttpRequest对象用来和服务器交换数据。

  1. var xhttp;
  2. if (window.XMLHttpRequest) {
  3. //现代主流浏览器
  4. xhttp = new XMLHttpRequest();
  5. } else {
  6. // 针对浏览器,比如IE5或IE6
  7. xhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8. }

第二步,使用xmlhttprequest对象的open()和send()方法发送资源请求给服务器。

xmlhttp.open(method,url,async) method包括get 和post,url主要是文件或资源的路径,async参数为true(代表异步)或者false(代表同步)

xhttp.send();使用get方法发送请求到服务器。

xhttp.send(string);使用post方法发送请求到服务器。

post 发送请求什么时候能够使用呢?

(1)更新一个文件或者数据库的时候。

(2)发送大量数据到服务器,因为post请求没有字符限制。

(3)发送用户输入的加密数据。

get例子:

  1. xhttp.open("GET", "ajax_info.txt", true);
  2. xhttp.open("GET", "index.html", true);
  3. xhttp.open("GET", "demo_get.asp?t=" + Math.random(), true);xhttp.send();

post例子

  1. xhttp.open("POST", "demo_post.asp", true);
  2. xhttp.send();

post表单数据需要使用xmlhttprequest对象的setRequestHeader方法增加一个HTTP头。

post表单例子

  1. xhttp.open("POST", "ajax_test.aspx", true);
  2. xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  3. xhttp.send("fname=Henry&lname=Ford");

async=true 当服务器准备响应时将执行onreadystatechange函数。

  1. xhttp.onreadystatechange = function() {
  2. if (xhttp.readyState == 4 && xhttp.status == 200) {
  3. document.getElementById("demo").innerHTML = xhttp.responseText;
  4. }
  5. };
  6. xhttp.open("GET", "index.aspx", true);
  7. xhttp.send();

asyn=false 则将不需要写onreadystatechange函数,直接在send后面写上执行代码。

  1. xhttp.open("GET", "index.aspx", false);
  2. xhttp.send();
  3. document.getElementById("demo").innerHTML = xhttp.responseText;

第三步,使用xmlhttprequest对象的responseText或responseXML属性获得服务器的响应。

使用responseText属性得到服务器响应的字符串数据,使用responseXML属性得到服务器响应的XML数据。

例子如下:

  1. document.getElementById("demo").innerHTML = xhttp.responseText;

服务器响应的XML数据需要使用XML对象进行转换。

例子:

  1. xmlDoc = xhttp.responseXML;
  2. txt = "";
  3. x = xmlDoc.getElementsByTagName("ARTIST");
  4. for (i = 0; i < x.length; i++) {
  5. txt += x[i].childNodes[0].nodeValue + "<br>";
  6. }
  7. document.getElementById("demo").innerHTML = txt;

第四步,onreadystatechange函数,当发送请求到服务器,我们想要服务器响应执行一些功能就需要使用onreadystatechange函数,每次xmlhttprequest对象的readyState发生改变都会触发onreadystatechange函数。

onreadystatechange属性存储一个当readyState发生改变时自动被调用的函数。

readyState属性,XMLHttpRequest对象的状态,改变从0到4,0代表请求未被初始化,1代表服务器连接成功,2请求被服务器接收,3处理请求,4请求完成并且响应准备。
status属性,200表示成功响应,404表示页面不存在。

在onreadystatechange事件中,服务器响应准备的时候发生,当readyState==4和status==200的时候服务器响应准备。

例子:

  1. function loadDoc() {
  2. var xhttp = new XMLHttpRequest();
  3. xhttp.onreadystatechange = function() {
  4. if (xhttp.readyState == 4 && xhttp.status == 200) {
  5. document.getElementById("demo").innerHTML = xhttp.responseText;
  6. }
  7. };
  8. xhttp.open("GET", "ajax_info.txt", true);
  9. xhttp.send();
  10. }
  11. //函数作为参数调用
  12. <!DOCTYPE html>
  13. <html>
  14. <body>
  15. <p id="demo">Let AJAX change this text.</p>
  16. <button type="button"
  17. onclick="loadDoc('index.aspx', myFunction)">Change Content
  18. </button>
  19. <script>
  20. function loadDoc(url, cfunc) {
  21. var xhttp;
  22. xhttp=new XMLHttpRequest();
  23. xhttp.onreadystatechange = function() {
  24. if (xhttp.readyState == 4 && xhttp.status == 200) {
  25. cfunc(xhttp);
  26. }
  27. };
  28. xhttp.open("GET", url, true);
  29. xhttp.send();
  30. }
  31. function myFunction(xhttp) {
  32. document.getElementById("demo").innerHTML = xhttp.responseText;
  33. }
  34. </script>
  35. </body>
  36. </html>

以上所述是小编给大家介绍的Ajax的使用四大步骤,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

人气教程排行