从JavaScript中的自定义对象调度事件

问题描述 投票:0回答:1

是否可以在对象中创建自定义事件。像这样的东西

var myCustomClass = function (param) {
  this.param = param;
};

myCustomClass.prototype.start = function(){
//Do staff
//fire event started
let event = new Event("started", {isStarted: true});
  this.dispatchEvent(event);
}

并且在mai.js中创建myCustomClass的实例>

myCustomClass = new myCustomClassr(param);

myCustomClass.addEventListener('started', function () {
console.log("started");
});

myCustomClass.start();

使用此代码,我收到一个错误消息,告诉我dispatchEvent不是函数

是否可以在对象中创建自定义事件。 var myCustomClass = function(param){this.param = param; }; myCustomClass.prototype.start = function(){//执行人员//解雇...

javascript javascript-events event-dispatching
1个回答
0
投票

dispatchEvent并非在所有JavaScript对象上都可用。这是非常可行的,但是您需要从事件发射器继承,因此您的类具有事件功能。

© www.soinside.com 2019 - 2024. All rights reserved.