摘要:
// 1.直接调用,指向全局console.log(this);// 2.在普通函数里调用,指向全局function fn(){ console.log(this);}fn();3.构造函数普通调用,指向全局(构造函数也是普通函数,可以正常执行)function Student(){ this.na 阅读全文
posted @ 2017-06-22 23:24
Hunter_who
阅读(121)
评论(0)
推荐(0)
浙公网安备 33010602011771号