是否可以在对象中创建自定义事件。像这样的东西
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(){//执行人员//解雇...
dispatchEvent并非在所有JavaScript对象上都可用。这是非常可行的,但是您需要从事件发射器继承,因此您的类具有事件功能。