摘要: function foo (el) { console.log(el, this.id); } var obj = { id: 'aaa' }; [2,6,3].forEach(foo, obj); 2aaa 6aaa 3aaa 通过call()、apply()进行绑定 阅读全文
posted @ 2017-07-21 10:37 Wzybnzy 阅读(102) 评论(0) 推荐(0) 编辑