Javascript - 如何访问另一个变量的大括号中定义的变量

时间:2017-10-29 04:08:33

标签: javascript

假设我在某个文件中声明了一个全局变量测试:

var test = {
  function1: function(){
    testV = "ok";
    checkFile();
  }
}

如何在另一个文件中访问testV?

1 个答案:

答案 0 :(得分:1)

该变量在该函数的本地范围内定义。您需要首先在全局范围内定义该变量,然后在此函数内引用它,然后在第二个函数内引用它。

有关详细信息,请see "What is the scope of variables in JavaScript?"