this指向

总结: this  4:

1. obj.fun()  this->点前的obj对象

2. new Fun()   this->new正在创建的新对象

3. 类型名.prototype.共有方法=function(){ ... }  

this->将来谁调用这个函数就指谁

将来调用这个函数的.前的某个子对象

4. fun() 和回调函数 和匿名函数自调 this->默认指window

posted @ 2022-10-24 14:17  青Fire  阅读(13)  评论(0编辑  收藏  举报