森林海
代码如下,是这种逻辑fnfunction ajax(args) {
$.ajax({ type: args.type || 'post',
url: args.url,
data: args.data,
async: args.async || true,
dataType: args.datatype || 'json',
success: function (m, status, xhr) {
args.success(m);
}, error: function(xhr, status, error) {
console.log('xhr.status: ' + xhr.status + ' status: ' + status);
}
});
}调用ajax({ url: 'http://', data: {}, success: function(j) {
console.log(j); //显示ajax返回的值
}
});