Tag: 父母的

如何从JavaScript中的子类调用父方法?

我花了几个小时试图find解决我的问题,但似乎是无望的。 基本上我需要知道如何从一个子类调用父方法。 到目前为止,我所尝试过的所有东西都以不工作或覆盖父方法结束。 我正在使用下面的代码在JavaScript中设置OOP: // SET UP OOP // surrogate constructor (empty function) function surrogateCtor() {} function extend(base, sub) { // copy the prototype from the base to setup inheritance surrogateCtor.prototype = base.prototype; sub.prototype = new surrogateCtor(); sub.prototype.constructor = sub; } // parent class function ParentObject(name) { this.name = name; } // parent's methods ParentObject.prototype […]