gpt4 book ai didi

javascript - 当线程通过clearInterval终止时有什么方法可以执行一些代码吗?

转载 作者:行者123 更新时间:2023-11-28 21:10:33 24 4
gpt4 key购买 nike

对于通过 setInterval 运行的特定线程,是否有类似“dispose”函数或“线程关闭 Hook ”之类的功能?

最佳答案

(function () {
var _setInterval = window.setInterval,
_clearInterval = window.clearInterval;



window.setInterval = function (fn, time) {
//Implement your hooks here, hopefully without side effects
return _setInterval(fn, time);
};

window.clearInterval = function (id) {
//Implement your hooks here, hopefully without side effects
return _clearInterval(id);
};

})()

从评论中可以清楚地看出,您不需要 Hook ,因为您处于您控制的环境中。在这种情况下,您可以使用相同的原理编写诸如 myClearInterval 等包装函数。

关于javascript - 当线程通过clearInterval终止时有什么方法可以执行一些代码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8828266/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com