萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jQuery調用ajax請求的常見方法匯總

jQuery調用ajax請求的常見方法匯總

 這篇文章主要介紹了jQuery調用ajax請求的常見方法,實例匯總了三種常見的jQuery調用Ajax的技巧,具有一定參考借鑒價值,需要的朋友可以參考下

   

本文實例匯總了jQuery調用ajax請求的常見方法。分享給大家供大家參考。具體如下:

示例代碼1

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

示例代碼2

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

示例代碼3

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

希望本文所述對大家的jQuery程序設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved