除了 jQuery 版本之外,Deferred 和 ny 之间的区别是什么?
我应该用什么来满足我的需要?我只想打电话给 fooExecute()
。例如,我只需要 fooStart()
和 fooEnd()
来切换 html div 状态。
//I'm using jQuery v2.0.0
function fooStart() { /* Start Notification */ }
function fooEnd() { /* End Notification */ }
function fooExecute() { /* Execute the scripts */ }
$('#button1').on('click', function() {
var deferred1 = $.Deferred();
var promise1 = $.Promise();
deferred1.???
promise1.???
});