gpt4 book ai didi

javascript - 另一个变量试图离开函数

转载 作者:行者123 更新时间:2023-12-02 17:08:09 25 4
gpt4 key购买 nike

我在函数内部有一些函数,但在检索变量时遇到问题。在代码中显示会更容易,我想在 testit 函数中记录 var 3,但不确定如何执行此操作。

test();

function test(){
var abc;
function one(){
abc = 1;
two();
}
var three;
function two(){
console.log(abc);
three = 2;
testit();
}
one();

}

function testit(){
console.log(three);
two();
}

最佳答案

要使测试成为一个对象,您需要执行以下操作:

function test(){
this.abc = 0;
this.three = 0;
this.one();
}
test.prototype.one = function(){
this.abc = 1;
this.two();
}
test.prototype.two = function(){
console.log(this.abc);
this.three = 2;
}
test.prototype.testit = function(){
console.log(this.three);
this.two();
}

然后像这样运行:

testObj = new test();
testObj.testit();

希望这有帮助。

编辑:顺便说一句:如果您将函数“two”中的调用放回函数“testit”,您最终会陷入无限循环。

关于javascript - 另一个变量试图离开函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25069744/

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