当前位置: 代码迷 >> JavaScript >> 奇怪的this指向
  详细解决方案

奇怪的this指向

热度:115   发布时间:2012-09-18 16:21:42.0
奇怪的this指向,高手请进
var a={
  b:function(){
  alert(this.c);
  },
  c:1,
}
(a.b=a.b)()
各位 麻烦解释一下为什么会输出undfined this=window?

------解决方案--------------------
JScript code

var a={
  b:function(){
  alert(this.c);
  },
  c:1,
}
(a.b=a.b)()//this指向当前window对象。 
  相关解决方案