摘要: 1.在一般函数方法中使用 this 指代全局对象 1 2 3 4 5 function test(){ this.x = 1; alert(this.x); } test(); // 1 1 2 3 4 5 function test(){ this.x = 1; alert(this.x); } 阅读全文
posted @ 2017-10-28 17:18 沈叶唐 阅读(317) 评论(0) 推荐(0)