0
我有我聽一個自定義的事件中:監聽事件的多個功能
$(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"
}
我還以爲你綁定事件偵聽器第二次將覆蓋第一個。但我想那不是那種情況 – Johan 2013-04-24 11:52:02