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

object.method() 和 object.prototype.method();

object.method() 和 object.prototype.method();

慕森卡 2018-09-26 06:07:58
原型式继承:function object(o){    function clone(){};     clone.prototype=o;    return new clone(); }function parent(name){  this.position=1;  this.name=name; }parent.prototype.getLevel=function(){  console.log("hello"); }var children=object(parent);这时运行:children.getLevel(); //children.getLevel is not a function(…)children.prototype.getLevel();//hello为什么会产生两种不同的结果?
查看完整描述

1 回答

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

添加回答

举报

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