简单封装Ajax库

function Ajax(url,funcsuccess,funcerror)
{
    //创建XMLHttpRequest对象
       var oAjax=null;
       if(window.XMLHttpRequest)
       {   
          oAjax=new XMLHttpRequest();
       }
       else
       {
          oAjax=new ActiveXObject("Microsoft.XMLHttp");
       }
       //打开连接
      oAjax.open('get',url,true);
      //发送请求
      oAjax.send();
      //获取返回数据
      oAjax.onreadystatechange =function()
      {
          if(oAjax.readyState ==4)
          {
               if(oAjax.status ==200)
               {  
                  funcsuccess(oAjax.responseText);
                }
                else
               {
                   if(funcerror)
                   {
                     funcerror;
                   }
                }
           }
      }
}

 

posted @ 2013-04-30 16:16  zhangchun  阅读(198)  评论(0编辑  收藏  举报