摘要: JS中函数的四种调用模式 [TOC] 在函数的调用模式中感觉最大的区别就是: this指向 函数调用模式 即通过函数名直接调用的一种方式 this 指向 window demo function fn( ){ console.log(this); // Window ... } fn( ); 方法调 阅读全文
posted @ 2016-04-20 23:57 PaddyWang 阅读(157) 评论(0) 推荐(0) 编辑