为了账号安全,请及时绑定邮箱和手机立即绑定

js里面的call的问题

js里面的call的问题

胡子哥哥 2018-12-21 19:14:46
为什么这句superSay.call(this);就可以让浏览器先提示"Hello",然后再"stu-Hello"呢function People(){}People.prototype.say = function(){    alert("Hello");}function Student(){}Student.prototype = new People();var superSay = Student.prototype.say;Student.prototype.say = function (){    superSay.call(this);    alert("stu-Hello");}var s = new Student();s.say();
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 468 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信