gpt4 book ai didi

javascript - "this"是如何在Javascript的回调中查找的

转载 作者:行者123 更新时间:2023-11-29 15:42:56 24 4
gpt4 key购买 nike

<分区>

我在以下情况中感到困惑:

function foo() {
}

foo.prototype.bar1 = function() {
console.log(this); // shows "Window"!!
}

foo.prototype.bar2 = function(func) {
func();
}

var f = new foo();
f.bar2(f.bar1);

console.log(this) 的结果如何/为什么会是“Window”?我认为无论您在这里如何调用类的公共(public)函数,“this”都应该始终指代“foo”。

还有避免这种错误的正确方法是什么?

谢谢

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