this的指向问题,一直困扰前端开发的一个难题;
那我们来慢慢的一一的探究的它的奥秘;
1.全局作用域中的this指向window的对象;
举例来说,
this.a=1;
alert(this.a===window.a); //true;
2.