3
我jQuery中看到的代碼:Double ajax函數?
var jqxhr = $.ajax("example.php")
.done(function() { alert("success"); })
.fail(function() { alert("error"); })
.always(function() { alert("complete"); });
但每個AJAX調用也有一回調功能例如:
jQuery.ajax({
...
beforeSend: function(xhr)
{
},
success: function (data, textStatus, jqXHR)
{
},
error: function(jqXHR, error_textStatus, errorThrown)
{
},
complete: function (jqXHR, complete_textStatus)
{
}
});
那麼有什麼區別?
可以請你給你的答案樣本? –
一個示例顯示如何對這樣的呼叫進行分組,並在所有事情完成時獲得延續或更基本的功能?在我看來,你真的擁有所有的作品...... – Mithon