jquery - javascript extend child function from another parent -
b extend a.call(this)
, how extend child function (a.method)?
function a() { this.method = function() { // method }; } function b() { a.call(this); this.method = function() { // method // method b }; }
Comments
Post a Comment