0

如何访问在这样的函数中定义的变量:

var functionVar = function(){
  this.var = 1;
}

console.log(functionVar().var); //MH - obviously this doesn't work, but I'm looking for the command that will log that variable
4

2 回答 2

4

你可以这样访问,

var functionVar = function(){
  this.var = 1;
}

 var o = new functionVar();
 alert(o.var)​
于 2012-08-09T14:44:22.247 回答
0

一个的就可以了。

var functionVar = function(){
  this.var = 1;
}

console.log(new functionVar().var);

尽管不确定您要通过使用此代码来实现什么。

于 2013-06-05T05:49:20.600 回答