jQuery 裏的 Promise

1  $.ajax("test.html").done(function(){ alert("哈哈,成功了!"); }).fail(function(){ alert("出錯啦!"); }).done() ;
    回調函數能夠添加任意多個,它們按照添加順序執行。
 
2
 
 $.when($.ajax("test1.html"), $.ajax("test2.html"))
 
  .done(function(){ alert("哈哈,成功了!"); })
 
  .fail(function(){ alert("出錯啦!"); });
相關文章
相關標籤/搜索