封装的ajax
Posted 不再犯错
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了封装的ajax相关的知识,希望对你有一定的参考价值。
function ajax(method,url,data,success){
if(window.XMLHttpRequest) {
// IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
var xmlhttp = new XMLHttpRequest();
} else {
// IE6, IE5 浏览器执行代码
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if(method ==‘get‘ && data){
url += ‘?‘ + data;
}
xmlhttp.open(method,url,true);
if(method ==‘get‘){
xmlhttp.send();
}else{
xmlhttp.setRequestHeader(‘Content-Type‘,‘application/x-www-form-urlencoded‘);
xmlhttp.send(data);
}
xmlhttp.onreadystatechange = function() {
if(xmlhttp.readyState == 4) {
if(xmlhttp.status == 200) {
success && success(xmlhttp.responseText);
} else {
}
}
}
}
调用位置
ajax(‘post‘,‘demo.php‘,function(data){
alert(data);
}
以上是关于封装的ajax的主要内容,如果未能解决你的问题,请参考以下文章