码迷,mamicode.com
首页 > 移动开发 > 详细

js中call、apply、bind的区别

时间:2018-04-11 21:39:15      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:func   返回   多个   app   name   UNC   call   apply   cti   

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中call、apply、bind的区别

标签:func   返回   多个   app   name   UNC   call   apply   cti   

原文地址:https://www.cnblogs.com/Alice-Xu/p/8798503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!