this指向:
this关键字
谁调用this就指向谁(ES6箭头函数除外)
普通函数this指向window;
箭头函数this指向上下级;
构造函数this指向实例;
改变this指向call、apply、bind;