js中callapplybind的区别
Posted alice-xu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中callapplybind的区别相关的知识,希望对你有一定的参考价值。
var Person = {
name : ‘alice‘,
say : function(txt1,txt2) {
console.info(txt1+txt2);
console.info(this.name);
}
}
var Dog = {
name : ‘tom‘,
say : function(txt1,txt2) {
console.info(txt1+txt2);
console.info(this.name);
}
}
var arr = [‘hello‘,‘hi‘];
Person.say(‘hello‘,‘hi‘);
Dog.say(‘wang~‘,‘wang2~‘);
Person.say.call(Dog,‘hello‘,‘hi‘);//Person.say内部的this指向了Dog,多个参数用逗号隔开
Person.say.apply(Dog,arr);//第二个参数是数组,参数数量可以是未知的
var PersonSay = Person.say.bind(Dog,‘hello‘,‘hi‘);//不会立即执行,触发返回函数才会执行
PersonSay();
>>>hellohi
>>>alice
>>>wang~wang2~
>>>tom
>>>hellohi
>>>tom
>>>hellohi
>>>tom
>>>hellohi
>>>tom
以上是关于js中callapplybind的区别的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript中的callapplybind是怎么回事?