博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年12月17日

摘要: /*Prototypal Inheritance*/function object(o) { function F() { } F.prototype = o; return new F();}// object to inherit fromvar parent = { name: "Papa"};// the new objectvar child = object(parent);// testingalert(child.name); // "Papa"//used in functionfunction Person() { // an &qu 阅读全文

posted @ 2011-12-17 21:07 ritazhou 阅读(331) 评论(0) 推荐(0) 编辑

摘要: //Classic 1function Parent(name) { this.name = name || 'Adam';}Parent.prototype.say = function () { return this.name;};function Child(name) {}function inherit(C, P) { C.prototype = new P(); C.prototype.constructor = C;}inherit(Child, Parent);var kid = new Child();kid.name = 'Rita';ki 阅读全文

posted @ 2011-12-17 21:01 ritazhou 阅读(245) 评论(0) 推荐(0) 编辑