this
Posted lctstruggle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了this相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章