私が聞いているカスタムイベントがあります:
$(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"
}