一个AJAX类代码

社会上要想分出层次,只有一个办法,那就是竞争,你必须努力,否则结局就是被压在社会的底层。
基本用法:
 
var ajax = new AjaxObj(url);
ajax.addListener(200, function(r){
alert(r);
});
ajax.send();

也可以连续调用:
 
var ajax = new AjaxObj(url).addListener(200, function(r){
alert(r);
}).send();

另外还支持自定义的POST或GET方式请求,以及监视不同的HTTP状态码,自己看代码琢磨吧 :)
完整代码:
 
AjaxObj = function(url, method, content){
this.r = null;
this.url = url;
this.method = method;
this.content = content;
this.header = {};
this.header["Connection"] = "close";
this.header["Content-type"] = "application/x-www-form-urlencoded";
var self = this;
if(window.XMLHttpRequest){
this.r = new XMLHttpRequest();
}else if(window.ActiveXObject){
try {
this.r = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try{
this.r = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
}
}
}
this.addListener = function(http_status, func){
if(!this.L)
this.L=[];
this.L[http_status] = func;
return this;
};
this.setHeader = function(name, value){
this.header[name] = value;
this.r.setRequestHeader(name, value);
return this;
};
this.send = function(){
if(this.method != "post" && this.method != "get")
this.method = "get";
this.r.open(this.method, this.url, true);
for(var h in this.header) {
this.r.setRequestHeader(h, this.header[h]);
}
this.r.send(this.content);
};
if(this.r) this.r.onreadystatechange = function(){
if(self.r.readyState == 4 && self.L[self.r.status] != null)
self.L[self.r.status](self.r.responseText);
};
};

到此这篇关于一个AJAX类代码就介绍到这了。生命本是一泓清泉,只有挑战自我的人才能品味出其中的甘洌;生命本是一部史书,只有挑战自我的人才能体味出其中的浩荡;生命就像一首优美的歌曲,只有挑战自我的人才能谱写出优美的旋律。更多相关一个AJAX类代码内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
实现AJAX异步调用和局部刷新的基本步骤

Ajax实现上传图像功能的示例详解

Ajax校验用户名是否存在的方法

AJAX请求数据及实现跨域的三种方法详解

ajax接口文档url路径的简写实例