摘要: 第一种 函数执行模式 function add(a,b){ console.log(this); return(a+b); } add(); this window // 在函数执行模式中任何this都指向window!!! 第二种 对象方法调用模式 function add(){ this.sho 阅读全文
posted @ 2016-11-09 11:25 kevinl7 阅读(129) 评论(0) 推荐(0) 编辑