當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
JavaScript——jQuery AJAX链式编程(流式编程)DEMO
生活随笔
收集整理的這篇文章主要介紹了
JavaScript——jQuery AJAX链式编程(流式编程)DEMO
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
基本概念
鏈式編程:設計模式之一
DEMO
doSubmit: function(){?return $.ajax({url: url,type: 'post',data: $("#fm").serialize(),dataType: 'html'}).then(function(data){toastr.error(" 提交成功", "操作成功");}, function(){toastr.error("提交失敗", "操作失敗");}); } $.ajax("test.html") .done(function(){console.log("success");} ) .fail(function(){console.log("error");} ); $.when($.ajax("test1.html"), $.ajax("test2.html")) .done(function(){console.log("success");}) .fail(function(){console.log("error");});參考文章
https://blog.csdn.net/qq_27970999/article/details/78718023
https://blog.csdn.net/zhouziyu2011/article/details/70257687
https://blog.csdn.net/weixin_33935505/article/details/89527694
https://www.cnblogs.com/lvdabao/p/jquery-deferred.html
總結
以上是生活随笔為你收集整理的JavaScript——jQuery AJAX链式编程(流式编程)DEMO的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JavaScript——易班优课YOOC
- 下一篇: C++——《算法分析与设计》实验报告——