一.this指向 点击打开视频讲解更加详细 this随处可见,一般谁调用,this就指向谁.this在不同环境下,不同作用下,表现的也不同. 以下几种情况,this都是指向window 1.全局作用下,this指向的是window console.log(window); console.log(this); console.log(window == this); // true 2.函数独立调用时,函数内部的this也指向window function fun() { console.log…