data 键值对 {key:value}
url 链接地址
cache 缓存 true 和 false 默认true带缓存
success 成功 error 异常
function ajax(args) {
var xhr = createXHR();
var data = http://www.cnblogs.com/kuikui/archive/2012/01/12/params(args.data);
if (/get/i.test(args.method)) { // 当为get方式时 将data直接拼接到url后
args.url += "?" + data;
}
if (!args.cache) { //无缓存
if (args.url.indexOf("?") < 0) { //当无参数data
args.url += "?";
}
args.url += "&" + (new Date()); // Math.random();
}
xhr.open(args.method, args.url, true);
xhr.onreadystatechange = function () {
if (4 == xhr.readyState && 200 == xhr.status) {
args.success(xhr.responseText, xhr.responseXML);
}
else {
args.error();
}
}
if (/post/i.test(args.method)) {
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(data);
}
else {
xhr.send();









