我尝试在我的函数中使用全局变量,见下文。我可以在我的 func1 中使用全局变量来存储一个值,例如。77,好的。在 func2 中,我尝试使用存储在全局变量中的当前值,但结果未定义。
任何建议如何让这个工作?
doGet() {
...
var buttonValue;
...
func1(e,buttonValue) {
...
buttonValue = size;
throw buttonValue;
--> buttonValue ok!
...
}
func2(e,buttonValue) {
...
throw buttonValue;
--> buttonValue undefined!
}