欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js实现简单实用的AJAX完整实例

程序员文章站 2022-04-15 10:16:56
本文实例讲述了js实现简单实用的ajax的方法。分享给大家供大家参考,具体如下: //版权归属 wujxping //ajax 1.2 //更新2012-2-...

本文实例讲述了js实现简单实用的ajax的方法。分享给大家供大家参考,具体如下:

//版权归属 wujxping
//ajax 1.2
//更新2012-2-20
//1、异步数据加载可以进行加载方式get,post的设定
//2、异步同步模式的属性设定
//3、数据加载自动超时设置
//4、***数据加载事件的添加,通过事件可以进行服务器数据的实时处理
//5、增加回调函数中用户自定义参数this.e
//6、增加ajax反复提交控制,只需将ajax对象定义为全局变量,每次提交都会进行等待上次提交的执行结果
//7、修改数据反复提交时xmlhttp对象被反复创建的问题
//8、修复重大bug,多个ajax事件覆盖问题
//服务器数据返回事件
ajax.prototype.servereven=function(func){
  this.callback=new delegate(func);//实例化
}
//创建异步处理对象
ajax.prototype.createxmlhttp=function(){
  if(this.xmlhttp!=null && typeof this.xmlhttp == "object")
    return this.xmlhttp;
  xmlhttpobj = ["microsoft.xmlhttp","msxml2.xmlhttp.5.0","msxml2.xmlhttp.4.0","msxml2.xmlhttp.3.0","msxml2.xmlhttp"];
 //根据不同的浏览器创建xmlhttprequest
 if(window.activexobject){
   for(i=0;i<xmlhttpobj.length;i++){ //选择ie兼容版本
      try{
        this.xmlhttp = new activexobject(xmlhttpobj[i]);
      }catch(err){
        continue;
      }
      if(this.xmlhttp)
        break;
    }
 }
 else if(window.xmlhttprequest){
  this.xmlhttp=new xmlhttprequest();
 }
  return this.xmlhttp;
 }
 //开始调用
ajax.prototype.send=function(){
  if(this.isbusy)//ajax正忙
    return;
  this.isbusy=true;
 var xmlhtml=this.createxmlhttp(); //创建对象
  if(xmlhtml==null){
    this.isbusy=false
    if(this.callback!=null)
      this.callback.run("xmlhttprequest create faild!",this.e);
    return;
  }
  var url=this.url;
  var _this=this;
  // 加随机数防止缓存
  if (url.indexof("?") > 0)
    url += "&randnum=" + math.random();
  else
    url += "?randnum=" + math.random();
  xmlhtml.open(this.method,url,this.async);
 xmlhtml.setrequestheader("content-type","application/x-www-form-urlencoded;charset=utf-8;");
  xmlhtml.setrequestheader("cache-control","no-cache");
 xmlhtml.setrequestheader("connection","keep-alive");
  //开启定时进行超时等待
  var timer=settimeout(function(){
    //if(xmlhtml.readystate!=4){
    xmlhtml.abort(); //取消本次传输
    _this.isbusy=false;
    if(_this.callback!=null)
      _this.callback.run("send timeout!",_this.e);
    cleartimeout(timer); //关闭定时器
  },this.timeout);
  if(this.async)//异步数据加载时状态变化与事件挂钩
    xmlhtml.onreadystatechange=function(){//接收服务器响应
      if(xmlhtml.readystate==4){//判断是否是完成状态
        if(xmlhtml.status==200){ //判断是否执行成功
          _this.isbusy=false;
          cleartimeout(timer); //关闭定时器
          if(_this.callback!=null)//开始触发服务器事件
            _this.callback.run(xmlhtml,_this.e);
        }
      }
    };
  try{
    xmlhtml.send(this.option);
  }catch(err){
    this.isbusy=false
    cleartimeout(timer); //关闭定时器
    alert(err);
    return;
  }
  if(!this.async){//同步数据加载时数据返回处理
    this.isbusy=false;
    cleartimeout(timer); //关闭定时器
    if(this.callback!=null)
      this.callback.run(xmlhtml,this.e);
  }
 }
 //创建ajax对象
function ajax(url){
  this.method="post";//设置数据提交方式
  this.async=true;//是否进行异步数据加载模式
  this.option="";  //请求的参数
  this.url=url;//请求的url连接
  this.timeout=1000*60*1;//默认超时时间为1分钟
  this.e=null;//回调事件中用户自定义参数
  this.xmlhttp=null;//接收异步创建的对象防止反复创建
  this.isbusy=false//获取当前ajax的执行状态
  this.callback=null;//声明回调事件
  // 实现委托的类
  delegate=function (func){
   this.arr = new array(); // 回调函数数组
   this.add = function(func){
    this.arr[this.arr.length] = func;
   };
   this.run = function(sender,e){
    for(var i=0;i<this.arr.length;i++){
     var func = this.arr[i];
     if(typeof func == "function"){
      func(sender,e); // 遍历所有方法以及调用
     }
    }
   }
   this.add(func);
  }
}

更多关于ajax相关内容感兴趣的读者可查看本站专题:《javascript中ajax操作技巧总结》及《jquery中ajax用法总结

希望本文所述对大家ajax程序设计有所帮助。