我在ajax成功函數內有以下代碼。發出調用另一個Ajax成功jQuery的AJAX
$.each(data,function(index,element){
$.ajax({
type: 'GET',
url: "http://192.168.1.56/SampleAjaxCall/sample.svc/sampleFunciton",
contentType: 'application/json; charset=utf-8',
dataType: 'jsonp',
async: false,
success:function(response){
alert("Success !"); // invokes after the loop
}
});
alert("After the ajax call"); // invokes first
});
首先我收到此提示消息Ajax調用後。在循環結束後,我收到了此警報消息警報(「成功!」)。所以在循環結束後調用ajax。所以我需要首先調用ajax。如何實現這種情況。