一个简单的 Ajax 类

简介: var Configuration = { MaxHttpRequest : 3} function Ajax(){ this.Version = "1.0.1"; this.

var Configuration = {
 MaxHttpRequest : 3
}

function Ajax()
{
 this.Version = "1.0.1";
 this.Query = new Array(Configuration.MaxHttpRequest);

 this.RequestCount = 0;
 this.XmlHttp = null; 
}

Ajax.prototype.Create = function(){
 try{
  this.XmlHttp = new XMLHttpRequest();
 }
 catch (error){
  try{
   this.XmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  }
  catch (error){
   alert('Cannot create ajax object');
   return null;
  }
 } 
}

Ajax.prototype.Send = function(method, url, callback)
{
 this.Create();
 if (null == this.XmlHttp)
 {
  return;
 } 
 this.XmlHttp.open(method, url, true); 
 this.XmlHttp.onreadystatechange = callback; 
 this.XmlHttp.send(null);
}
 

目录
相关文章
N..
|
7月前
|
XML JSON 前端开发
jQuery实现Ajax
jQuery实现Ajax
N..
70 1