1.GET请求
●url:请求的URL 地址
●data:请求携带的参数
●callback:载入成功时回调函数
●type:设置返回内容格式,xml, html, script, json, text, _default
2.POST请求
$.post(url, [data], [callback], [type])
●url:请求的URL 地址
●data:请求携带的参数
●callback:载入成功时回调函数
●type:设置返回内容格式,xml, html, script, json, text, _default
3.通用方法
$.ajax({ // url url: 'http://127.0.0.1:8000/jquery-server', // 参数 data: {a:100, b:200}, // 请求类型 type: 'GET', // 响应体结果 dataType: 'json', // 成功的回调 success: function(data){console.log(data);}, // 超时时间 timeout: 2000, // 失败的回调 error: function(){console.log('出错拉~');}, // 头信息 headers: { c: 300, d: 400 } })