讓我們假設我有從setTimeout
或setInterval
返回的超時ID。獲取與setTimeout或setInterval關聯的函數
我能以某種方式獲得與之相關的原始功能或代碼嗎?
事情是這樣的:
var timer_id = setTimeout(function() {
console.log('Hello Stackoverflowers!');
}, 100000);
var fn = timer_id.get_function(); // desired method
fn(); // output: 'Hello Stackoverflowers!'
Afaik你必須圍繞'setTimeout'編寫自己的包裝。 – 2013-05-02 13:23:33