ajax({
'url': 'b.txt',
'success': function(res){
console.log(res);
console.log(eval('3+2'));
console.log(JSON.parse(res));
json数据的格式, 键值一一相对的键值对
var r = JSON.parse(res);
console.log(JSON.stringify(r));
}
});
function ajax(json) {
console.log(json.success);
json.type = json.type ? json.type : 'get';
json.async = json.async == false ? false : true;
json.contentType = json.contentType ? json.contentType : 'application/x-www-form-urlencoded';
json.data = json.data ? json.data : '';
var ajax = new XMLHttpRequest();
if (json.type.toLowerCase() == 'post') {
ajax.open('post', json.url, json.async);
ajax.setRequestHeader('Content-type', json.contentType + ';charset=utf-8');
ajax.send(json.data);
} else {
ajax.open('get', json.url + '?' + json.data, json.async);
ajax.send();
}
ajax.onreadystatechange = function () {
if (ajax.readyState == 4 && ajax.status == 200) {
json.success(ajax.response);
}
}
}
转载请注明原文地址:https://ipadbbs.8miu.com/read-1116.html