gpt4 book ai didi

javascript - javascript this 关键字如何在下面的代码中工作

转载 作者:行者123 更新时间:2023-11-28 11:35:44 26 4
gpt4 key购买 nike

我们无法更改以下代码:

var t = 10;

function test(){
var t = 20;
alert(this.t);
}

我们必须在下面更改或添加。

test();

上面的函数调用执行10;

我需要在功能测试中定义的“20”。

最佳答案

你可以这样做:

test.call({t:20});

关于javascript - javascript this 关键字如何在下面的代码中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22008022/

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