ajax规范 发表于 2017-03-31 | 更新于 2017-03-31 | 阅读次数 1 ajax请求规范 1234567891011121314151617181920212223242526272829303132$.ajax({ url: '', type: '', dataType: 'json', timeout: 3000, data: { num1: num1, num2: num2 }, beforeSend: function(xhr, settings) { // 发送请求前 console.log('beforeSend', xhr, settings); }, success: function(data, status, xhr) { // 请求成功 console.log('success', data, status, xhr); if (data.code === 200) { console.log('处理成功'); } else { console.log('处理失败'); } }, error: function(xhr, errorType, error) { // 请求失败 console.log('error', xhr, errorType, error); alert('请求失败'); }, complete: function(xhr, status) { // 请求成功或失败都执行 console.log('complete', xhr, status); }}); 本文作者: Pimi Chen 本文链接: http://pimichen.com/blog/jquery/ajax请求规范.html 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 许可协议。转载请注明出处!