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基本原理实现
Posted qiqi105
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax基本原理实现相关的知识,希望对你有一定的参考价值。
以上是关于ajax基本原理实现的主要内容,如果未能解决你的问题,请参考以下文章