JavaScript 中的 call()和apply()
在JavaScript中,每个函数都包含两个非继承而来的方法:call()和apply()
作用: call和apply的作用都是为了改变某个函数运行时的上下文(context),换句话说,就是为了改变函数体内部this的指向。
1 2 3 4 5 6 7 8 9 10 11
| function fruits(){} fruits.prototype = { color: "red", say: function(){ console.log("My color is " + this.color); } };
var apple = new fruits; apple.say();
|
当想另外一个对象想使用fruits中的say方法时不用重新写,使用call和apply可以实现“劫持”别人的方法。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| function fruits(){} fruits.prototype = { color: "red", say: function(){ console.log("My color is " + this.color); } };
var another = { color: "yellow" };
var apple = new fruits; apple.say(); apple.say.call(another); apple.say.apply(another);
|
区别:参数书写方式不同
call(thisObj, arg1, arg2, arg3, arg4);
apply(thisObj, [args]);
thisObj:call和apply第一个参数是一样的,该参数将替代Function类里面的this对象。
arg1,arg2….:是一个个的参数,
args:一个数组或类数组,是一个参数列表。
用法:
1.改变函数作用域
1 2 3 4 5 6 7 8 9 10
| var name = "小白"; var obj = { name: "小红" };
function sayName() { return this.name; } console.log(sayName.call(this)); console.log(sayName.call(obj));
|
2.实现继承
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
function Person(name, height) { this.sayInfo = function() { return "姓名:" + name + ", 身高:" + height + ", 体重:" + this.weight; } }
function Chinese(name, height, weight) { Person.call(this, name, height); this.weight = weight; this.nation = function() { console.log("我是中国人"); } }
function America(name, height, weight) { Person.apply(this, [name, height]); this.weight = weight; }
let chiness = new Chinese("成龙", "178cm", "60kg"); console.log(chiness.sayInfo()); let america = new America("jack", "180cm", "55kg"); console.log(america.sayInfo());
|