码迷,mamicode.com
首页 > 其他好文 > 详细

this

时间:2018-06-09 00:49:02      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:调用   fun   var   function   http   this   OLE   func   tps   

https://segmentfault.com/q/1010000008856410

 

var num=1;
var myObject ={
num :2,
add:function(){
this.num=3;
(function(){
console.log(this);
this.num=4;
})();
console.log(this);
},
sub:function(){
console.log(this.num);
}
}

myObject.add();

console.log(myObject.num);
console.log(num);
var sub = myObject.sub;
sub();

自运行函数其实是window对象调用它

https://segmentfault.com/q/1010000004648772

this

标签:调用   fun   var   function   http   this   OLE   func   tps   

原文地址:https://www.cnblogs.com/lctstruggle/p/9158064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!