callapplybind
Posted gamedaybyday
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了callapplybind相关的知识,希望对你有一定的参考价值。
三者都是用来改变函数的this对象的指向的
fun.call(this,a,b); //相当于 this.fun(a,b)
fun.apply(this,[a,b]); //相当于 this.fun(a,b);
fun.bind(this); // 返回 this.fun, fun.bind(this)(); 相当于 this.fun();
以上是关于callapplybind的主要内容,如果未能解决你的问题,请参考以下文章