2014-02-27_javascript_PrototypalInheritance

//Object.create() 方法

if (typeof Object.create !== "function")
    Object.create = function(o) {
      function F() {}
      F.prototype = o;
      return new F();
    };

var Model = {
  inherited: function(){},
  created: function(){},
  prototype: {
    init: function(){}
  },
  create: function(){
    var object = Object.create(this);
    object.parent = this;
    object.prototype = object.fn = Object.create(this.prototype);
    object.created();
    this.inherited(object);
    return object;
  },
  init: function(){
    var instance = Object.create(this.prototype);
    instance.parent = this;
    instance.init.apply(instance, arguments);
    return instance;
  }
};

 

var Asset = Model.create();
var User  = Model.create();
var user = User.init();

 

注意:javascript中执行typeof Object=="funcion"

 

2014-02-27_javascript_PrototypalInheritance,布布扣,bubuko.com

2014-02-27_javascript_PrototypalInheritance

上一篇:Web 前端开发精华文章推荐(jQuery、HTML5、CSS3)【系列十五】


下一篇:datagrid在MVC中的运用01