我有一个我听的自定义事件:
$(document).on('MyCustomEvent', function(e, data) {
});
我的问题是我想知道什么时候MyCustomEvent
在很多不同的函数中触发了。我不想在每个函数中附加事件处理程序,因为它没有任何意义并且可能会相互覆盖。
我所追求的是这样的:
function one(){
//"when MyCustomEvent is fired, do stuff with the 'data' here"
}
function two(){
//"when MyCustomEvent is fired, do stuff with the 'data' here"
}