**
get请求:
**
$.get(URL,传递的参数,回调函数)
$.get('http://127.0.0.1/server',{a:100,b:200},function(){
....
})
**
post请求:
**(与get请求是一样的)
$.post(URL,传递的参数,回调函数)
$.post('http://127.0.0.1/server',{a:100,b:200},function(){
....
})
还可以加第四个参数:(设置响应体的数据类型)
$.get(‘http://127.0.0.1/server’,{a:100,b:200},function(){
…
},‘json’)
将返回的json字符串进行自动转换
**
通用型方法Ajax:
**
$.ajax({
url: ' ',
//参数:
data:{a:100,b:200},
//类型:
type:' ', // GET,POST...
//成功的回调
success:function({
})
)
其中还可以加:
响应体结果:
dataType:‘json’
失败的回调:
error:function(){
…
}
超时时间:
timeout:2000
头信息:
headers:{
…
}