gpt4 book ai didi

Javascript:从函数对象内调用对象函数

转载 作者:行者123 更新时间:2023-12-02 15:49:59 24 4
gpt4 key购买 nike

我的问题似乎是,如果我从函数对象中调用它,我的对象函数将不可见。示例代码:

function foo()
{
this.bar = function()
{
alert("hit me!");
}

this.sna = {
fu: function ()
{
this.bar();
}
};

}

this 似乎指的是 sna 而不是 foo。我如何寻址foothis.parent 不起作用。

最佳答案

使用变量来引用this(Foo)。请参阅this - JavaScript | MDN

function Foo() {
this.bar = function() {
console.log("hit me!");
};

var that = this;

this.sna = {
fu: function() {
that.bar();
}
};

}

var foo = new Foo();
foo.bar();
foo.sna.fu();

关于Javascript:从函数对象内调用对象函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31923409/

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