ajax的使用完整步骤,Ajax的使用四大步骤

  • Post author:
  • Post category:其他


什么是ajax?

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

如何使用ajax?

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

var xhttp;

if (window.xmlhttprequest) {

//现代主流浏览器

xhttp = new xmlhttprequest();

} else {

// 针对浏览器,比如ie5或ie6

xhttp = new activexobject(“microsoft.xmlhttp”);

}

第二步,使用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例子:

xhttp.open(“get”, “ajax_info.txt”, true);