摘要: 1、普通函数function test(){ console.info(this); console.info(this.t); } test();//此时的this指向的是window,所以this.t=1; 2、函数被当成方法去调用时 var obj = { t:2, t... 阅读全文
posted @ 2015-10-24 11:51 woqiaoxun 阅读(173) 评论(0) 推荐(0) 编辑