三者都是用来改变函数的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();
call、apply、bind
原文:http://www.cnblogs.com/gamedaybyday/p/6060435.html