首页 > 开发 > AJAX > 正文

jQuery调用ajax请求的常见方法汇总

2024-09-01 08:32:59
字体:
来源:转载
供稿:网友

这篇文章主要介绍了jQuery调用ajax请求的常见方法,实例汇总了三种常见的jQuery调用Ajax的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例汇总了jQuery调用ajax请求的常见方法。分享给大家供大家参考。具体如下:

示例代码1

 

 
  1. $.ajax('/ROUTE', { 
  2. type: 'GET' 
  3. data: {param1: 'Hello', param2: 'World'}, 
  4. dataType: 'json'
  5. contentType: 'application/json'
  6. timeout: 3000, 
  7. success: function(response) { 
  8. // console.log(response.something); 
  9. }, 
  10. error: function(request, errorType, errorMessage) { 
  11. // console.log("[" + errorType + "] " + errorMessage); 
  12. }, 
  13. beforeSend: function() { 
  14. // do something like .addClass('is-fetching') 
  15. }, 
  16. complete: function() { 
  17. // do something like removeClass('is-fetching') 
  18. }); 

示例代码2

 

 
  1. $.get('/ROUTE'function(response) { 
  2. // success (response: HTML) 
  3. }); 
  4.  
  5. $.getJSON('/ROUTE'function(response) { 
  6. // success (response: JSON) 
  7. }); 

示例代码3

 

 
  1. $('form').on('submit'function(event) { 
  2. event.preventDefault(); 
  3. var formData = $(this).serialize(); 
  4. $.ajax($(this).attr('action'), { 
  5. type: $(this).attr('method'), 
  6. data: formData, 
  7. dataType: 'json'
  8. contentType: 'application/json'
  9. success: function(response) {}, 
  10. error: function(request, errorType, errorMessage) {}, 
  11. beforeSend: function() {}, 
  12. complete: function() {}, 
  13. timeout: 3000 
  14. }); 
  15. }); 

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表