AJAX中XMLHttpRequest以异步方式的处理程序的特点:
1、创建异步对象
var xhr = new XMLHttpRequest();
2、设置请求报文
xhr.open() 发起请求,可以是get、post方式
xhr.setRequestHeader() 设置请求头
xhr.send() 发送请求主体get方式使用xhr.send(null)
xhr.onreadystatechange = function () {} 监听响应状态
readstate 属性有五个状态:
-
xhr.readyState = 0时,(未初始化)还没有调用send()方法
-
xhr.readyState = 1时,(载入)已调用send()方法,正在发送请求
-
xhr.readyState = 2时,(载入完成)send()方法执行完成,已经接收到全部响应内容
-
xhr.readyState = 3时,(交互)正在解析响应内容
-
xhr.readyState = 4时,(完成)响应内容解析完成,可以在客户端调用了
xhr.status表示响应码,如200
xhr.statusText表示响应信息,如OK
xhr.getAllResponseHeaders() 获取全部响应头信息
xhr.getResponseHeader('key') 获取指定头信息
xhr.responseText、xhr.responseXML都表示响应主体