彻底弄懂bind,apply,call三者的区别 (转)
为什么要改变this指向?
我们知道bind,call,apply的作用都是用来改变this指向的,那为什么要改变this指向呢?请看下面的例子:
成都创新互联公司提供高防物理服务器租用、云服务器、香港服务器、成都服务器托管等
var name="lucy";
let obj={
name:"martin",
say:function () {
console.log(this.name);
}
};
obj.say(); //martin,this指向obj对象
setTimeout(obj.say,0); //lucy,this指向window对象
标题名称:彻底弄懂bind,apply,call三者的区别 (转)
浏览地址:http://ybzwz.com/article/dsojghe.html