摘要: 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 @ 2018-03-24 22:26 南瓜壳 阅读(300) 评论(0) 推荐(0) 编辑