gpt4 book ai didi

javascript - 如何调用其中可以通过 this 访问参数的函数?

转载 作者:行者123 更新时间:2023-11-28 13:28:52 25 4
gpt4 key购买 nike

我有以下功能:

function outer(){
index = 1;
inner();
}

function inner(){
alert(this.index);
}

我想在警报中看到 1。我还希望函数内部不带参数。

这可能吗?

最佳答案

使用 Function.prototype.call 调用函数时可以手动指定上下文

function outer () {
this.index = 1;
inner.call(this);
}

关于javascript - 如何调用其中可以通过 this 访问参数的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26705736/

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