覆盖事件处理的父原型方法

时间:2013-05-17 22:27:57

标签: javascript events javascript-events event-handling

我使用以下代码jsFiddle来处理表单字段和事件。我之前曾就此问过两个问题,他们给我的帮助很大。现在我有了一个新的问题/问题。

function Field(args) {
    this.id = args.id;

    this.elem = document.getElementById(this.id);
    this.value = this.elem.value;
}

Field.prototype.addEvent = function (type) {
    this.elem.addEventListener(type, this, false);
};

// FormTitle is the specific field like a text field. There could be many of them.
function FormTitle(args) {
    Field.call(this, args);
}

Field.prototype.blur = function (value) {
    alert("Field blur");  
};

FormTitle.prototype.blur = function () {
    alert("FormTitle Blur");
};

Field.prototype.handleEvent = function(event) {
    var prop = event.type;
    if ((prop in this) && typeof this[prop] == "function")
        this[prop](this.value);
};

inheritPrototype(FormTitle, Field);
var title = new FormTitle({name: "sa", id: "title"});
title.addEvent('blur');


function inheritPrototype(e, t) {
    var n = Object.create(t.prototype);
    n.constructor = e;
    e.prototype = n
}

if (!Object.create) {
    Object.create = function (e) {
        function t() {}
        if (arguments.length > 1) {
            throw new Error("Object.create implementation only accepts the first parameter.")
        }
        t.prototype = e;
        return new t
   }
}

问题是我想覆盖父方法(Field.prototype.blur),而是使用FormTitle.prototype.blur方法作为标题对象。但是该对象不断引用父方法,并且警报始终显示“Field blur”而不是“FormTitle Blur”。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

您正在FormTitle原型中定义一个方法,然后使用inheritPrototype将整个原型替换为另一个对象。

你必须交换订单。首先你称之为:

inheritPrototype(FormTitle, Field);

然后在刚刚创建的原型对象上设置onblur:

FormTitle.prototype.blur = function () {
    alert("FormTitle Blur");
};

http://jsfiddle.net/zMF5e/2/