0

有没有办法跟踪自定义事件,特别是像骨干网中的那些非 DOM 事件?

thisObj.on("custom:triggeredEvents", function() { do.stuffHere() });
thisObj.trigger("custom:triggeredEvents");

干杯!

4

1 回答 1

2

你应该看看观察者模式

如果您不想自己实现,可以使用现有的库,例如https://github.com/mroderick/PubSubJS

于 2013-06-24T08:18:06.327 回答