摘要: call,apply,bind都是一种方法。 一,call() ①:call() 是可以 调用函数的。 1 function fn() { 2 console.log(12) 3 } 4 5 fn.call() // 12 ②:通过给call() 内部传参,可以改变 this指向。 1 let Do 阅读全文
posted @ 2022-11-06 21:52 一粒金灿米 阅读(129) 评论(0) 推荐(0) 编辑