标签: javascript jquery
B通过A.call(this)扩展A,如何扩展子函数(A.method)?
A.call(this)
function A() { this.method = function() { // method A }; } function B() { A.call(this); this.method = function() { // method A // method B }; }