Home  >  Article  >  Web Front-end  >  How to make setTimeout in JavaScript support chain operations_javascript skills

How to make setTimeout in JavaScript support chain operations_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:53:551205browse

The modification is very simple, judge by the parameters, and then return the promise object

Copy code The code is as follows:

(function() {
var timeout = setTimeout;
window.setTimeout = function(fn, time) {
If (!time) {
Time = fn;
Return $.Deferred(function(dfd) {
timeout(function() {
            dfd.resolvel(dfd);
         }, time);
}).promise();
}
Timeout.apply(window, arguments);
}
})();

Call

Copy code The code is as follows:

setTimeout(1000).done(function(dnt) {
console.log(dnt)
})
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn