总结: this 4种:
1. obj.fun() this->点前的obj对象
2. new Fun() this->new正在创建的新对象
3. 类型名.prototype.共有方法=function(){ ... }
this->将来谁调用这个函数,就指谁
将来调用这个函数的.前的某个子对象
4. fun() 和回调函数 和匿名函数自调 this->默认指window