AJAX说明
- IE7及其以上版本中支持原生的 XHR 对象,因此可以直接用:new XMLHttpRequest();
- IE6及其之前的版本中,XHR对象是通过MSXML库中的一个ActiveX对象实现的。则:new ActiveXObject('Microsoft.XMLHTTP');
实现
function ajax(options) {
options = options || {};
options.type = (options.type || "GET").toUpperCase();
options.async = options.async || true;
var params = formatParams(options.data);
//若IE9以上,支持ES5,则可用以下方法快捷格式化参数
//var qs = Object.keys(data).reduce(function(pre,cur,index){
// return pre + '&' + encodeURIComponent(cur) + '=' + encodeURIComponent(data[cur]);
//},'');
//var params = qs.slice(1);
//创建xhr - 非IE6/IE6及其以下版本浏览器
var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
//接收 - 第三步
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
var status = xhr.status;
if (status >= 200 && status < 300) {
options.success && options.success(xhr.responseText, xhr.responseXML);
} else {
options.fail && options.fail(status);
}
}
}
//连接 和 发送 - 第二步
if (options.type == "GET") {
xhr.open("GET", options.url + "?" + params, options.async);
xhr.send(null);
} else if (options.type == "POST") {
xhr.open("POST", options.url, options.async);
//设置表单提交时的内容类型
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(params);
}
}
//格式化参数
function formatParams(data) {
var arr = [];
for (var name in data) {
arr.push(encodeURIComponent(name) + "=" + encodeURIComponent(data[name]));
}
arr.push(("v=" + Math.random()).replace(".", ""));
return arr.join("&");
}
//调用方法
ajax({
url: "url", //请求地址
type: "POST", //请求方式
data: { a: "test", b: "t" }, //请求参数
success: function (response, xml) {
// 此处放成功后执行的代码
},
fail: function (status) {
// 此处放失败后执行的代码
}
});
大前端知识库收集分享 www.rjxgc.com 壹玖零Tech
搜罗各种前后端奇淫技巧,花式编程思想,日日更新,速来围观吧...