javascript从另一个父级扩展子函数

时间:2016-01-07 18:22:35

标签: javascript jquery

B通过A.call(this)扩展A,如何扩展子函数(A.method)?

function A()
{
    this.method = function()
    {
        // method A
    };
}

function B()
{
    A.call(this);
    this.method = function()
    {
        // method A
        // method B
    };
}

0 个答案:

没有答案