码迷,mamicode.com
首页 > Web开发 > 详细

ajax基本原理实现

时间:2018-01-27 19:14:00      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:function   method   code   blog   text   基本   ati   原理   pre   

function ajax(method,url,data,success){

try{
var xhr=new XMLHttpRequest();
}catch(e){
xhr=new ActiveXObject(‘Mocrosoft.XMLHTTP‘);
}
if(method==‘get‘&&data){
url+=‘?‘+data;
}
xhr.open(method,url,true);
if(method==‘get‘){
xhr.send();
}else{
xhr.setRequestHeader(‘Content-type‘, ‘application/x-www-form-urlencoded‘);
xhr.send(data);
}
xhr.onreadystatechange=function(){
if(xhr.readyState==4){
success&&success(xhr.responseText);
//console.log(xhr.responseText);
}
}
}

ajax基本原理实现

标签:function   method   code   blog   text   基本   ati   原理   pre   

原文地址:https://www.cnblogs.com/qiqi105/p/8366574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!