如何判断jquery的ajax请求已经返回
1 回答
Qyouu
TA贡献1786条经验 获得超11个赞
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | $.ajax({ //访问地址 url: '/path/to/file', //访问方式,一般有GET或POST两种 type: 'default GET (Other values: POST)', //返回的数据格式,这个是可选参数,jquery回默认判断返回参数的类型 dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)', //发送的数据 data: { param1: 'value1', param2: 'value2' }, }) //成功后的处理函数,res为服务器返回的数据 .done(function(res) { console.log("success"); }) //失败后的处理函数 .fail(function() { console.log("error"); }) //结束后的处理函数,不管成功失败都执行 .always(function(res) { console.log("complete"); }); |
- 1 回答
- 0 关注
- 419 浏览
添加回答
举报
0/150
提交
取消