gpt4 book ai didi

javascript - 如何在 setInterval 和 setTimeout 函数中更改 "this"的范围

转载 作者:行者123 更新时间:2023-12-01 02:48:18 26 4
gpt4 key购买 nike

如何在 setIntervalsetTimeout 调用中使用 this

我想像这样使用它:

function myObj() {
this.func = function(args) {
setTimeout(function() {
this.func(args);
}, 1000);
}
}

前段时间我是这样为 .onclick 事件做的:

this.click = function(func) {
this.elem.onclick = (function(func, obj) {return function(){func.apply(obj)} })(func,this);
};

但我不知道如何为 intervalstimeouts 做这件事。

最佳答案

最简单的方法是将 this 保存到本地。调用 setIntervalsetTimeout 回调的上下文不会更改本地 self。相反,它将保持原始的 this

function myObj() {
var self = this;
this.func = function(args) {
setTimeout(function() {
self.func(args);
}, 1000);
}
}

关于javascript - 如何在 setInterval 和 setTimeout 函数中更改 "this"的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11366643/

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