标签:color 总结 style als prototype 内容 结果 相同 今天
在前面的章节中,我们有讲到过关于 ES5 和 ES6 中 this 指向的问题,那么今天我们就来聊一下在JavaScript 中,如何利用 call, apply, bind 改变 this 指向的问题
function Teacher() {
this.name=‘teacher‘
}
function Student() {
this.name=‘student‘
}
Student.prototype.study=function () {
console.log(‘i am ‘+this.name);
}
var t=new Teacher();
var s=new Student();
s.study()
s.study.call(t) // 用 s 的方法调用(显示)t 的数据内容
打印结果如下:
现在我们给Fn student添加两个形数,再给 call 添加实参:
标签:color 总结 style als prototype 内容 结果 相同 今天
原文地址:https://www.cnblogs.com/edwardwzw/p/11757426.html