The modification is very simple, judge by the parameters, and then return the promise object
(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
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