摘要: 继承: 原型链继承 function SuperType() { this.propperty = true; } Supertype.prototype.getSuperValue = function() { return this.propperty; } function SubType() 阅读全文