类扩展容器但无法添加事件监听器?

时间:2013-02-28 07:42:31

标签: easeljs createjs

我创建了一个扩展Container的自定义类。但是,当我尝试向其添加侦听器时,我收到以下错误:

“TypeError:this.addEventListener不是函数

以下是我的代码的最小示例:

(function() {
    var ExtendedContainerObject = function() {
        this.initialize();
    }

    // inherit from Container
    var p = ExtendedContainerObject.prototype = new createjs.Container();

    p.Container_initialize = p.initialize;
    p.initialize = function() {
        this.Container_initialize();
        console.log("this: " + this);
        this.addEventListener("custom_event", function(evt){console.log("this: " + evt.target);});

        this.button.onPress = function(evt) {
            evt.onMouseMove = function(ev) {
                dispatchEvent(new Event("custom_event", this));
            }
        }
    }

    window.ExtendedContainerObject = ExtendedContainerObject;
}());

1 个答案:

答案 0 :(得分:1)

我有一个使用它的类完全相同,它应该可以工作,你使用的是EaselJS 0.6.0吗?