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 に答える