一、call和apply的说明
1、call,apply都属于Function.prototype的一个方法,它是JavaScript引擎内在实现的,因为属于Function.prototype,所以每个Function对象实例(就是每个方法)都有call,apply属性。既然作为方法的属性,那它们的使用就当然是针对方法的了,这两个方法是容易混淆的,因为它们的作用一样,只是使用方式不同。
2、语法:foo.call(this, arg1,arg2,arg3) == foo.apply(this, arguments) == this.foo(arg1, arg2, arg3);
3、相同点:两个方法产生的作用是完全一样的。
4、不同点:方法传递的参数不同。
二、实例代码
<script type="text/javascript">
function A(){
this.flag = 'A';
this.tip = function(){
alert(this.flag);
};
}
function B(){
this.flag = 'B';
}
var a = new A();
var b = new B();
//请参考以下:
a.tip();//正常调用tip
a.tip.call(b);//call调用tip,依赖来自b
a.tip.apply(b);//apply调用tip,依赖来自b
</script>
三、总结
1.apply/call都属于Function.prototype的方法,因此方法实例对象都可以调用;
2. a.tip.apply(b)的意义等同与调用a的tip方法:a.tip();区别在于tip依赖的参数来源于b。