$.ajax({
url: null, // **请求连接**
method: 'GET', // **请求类型**
data: null, // **post时请求时传递的数据**
dataType: 'text', // 返回请求的类型,有text/json两种
jsonp: 'callback', // jsonp请求的标志,一般不改动
jsonpCallback: 'jsonpCallback', //jsonp请求的函数名
async: true, // 是否异步
cache: true, // 是否缓存
timeout:null, // 设置请求超时
contentType: 'application/x-www-form-urlencoded',
success: null, // **请求成功后的执行函数**
fail: null // 请求失败回调
})
success返回的data需要自己用文件流定义,例如
response.getWriter().print(o.toString());//o是变量名