摘要: this的理解 看了阮一峰的this讲解,下面是我的理解: 总结来说 this指向 调用this所在方法 的对象; 普通函数 例子1 function test(){ this.x = 1; console.log(x); } test();//1 因为调用test()方法是window即全局,所以 阅读全文
posted @ 2017-12-27 19:29 liaoanran 阅读(362) 评论(0) 推荐(0)