ajax入门简明教程---响应处理
今天图老师小编给大家精心推荐个ajax入门简明教程---响应处理教程,一起来看看过程究竟如何进行吧!喜欢还请点个赞哦~
var XHR;
//创建XMLHttpRequest对象
function creatXMLHTTPRequest() {
if (window. XMLHttpRequest) { //firefox浏览器
XHR = new XMLHttpRequest();
}
else if (window.ActiveObject) { //IE浏览器
try {
XHR = new ActiveXObject(“Msxml2.XMLHTTP”);
} catch (e){
try {
XHR = new ActiveXObject(“Microsoft.XMLHTTP”);
} catch(e){}
}}} //发送请求
function sendrequest(url) {
creatXMLHTTPRequest();
XHR.open(“GET”,url,true);
XHR.onreadystatechange = doinfo; //指定响应函数
XHR.send(null);}
function doinfo() {
if (XHR.reaystate = = 4) { //判断状态是否为4
if (XHR.status = = 200) { //信息已经成功返回,开始处理信息
//用responseText的方式返回信息
var res = XHR.responseText;
window.alert(res);}
else {
window.alert("页面有异常");
}}}