在JavaScript中,自定義事件允許您創建并觸發自己的事件,以便在代碼的不同部分之間進行通信。以下是如何創建和觸發自定義事件的步驟:
使用CustomEvent()
構造函數創建一個新的自定義事件。您需要傳遞兩個參數:事件名稱(字符串)和一個包含有關事件的詳細信息(可選的對象)。
const myCustomEvent = new CustomEvent('myCustomEvent', {
detail: {
message: 'Hello, this is my custom event!',
otherInfo: 'Some additional data'
}
});
使用addEventListener()
方法為自定義事件添加一個事件監聽器。您需要傳遞兩個參數:事件名稱(字符串)和一個回調函數。
document.addEventListener('myCustomEvent', (event) => {
console.log('Custom event triggered!');
console.log('Event details:', event.detail);
});
使用dispatchEvent()
方法觸發自定義事件。您需要傳遞一個參數:您創建的自定義事件對象。
document.dispatchEvent(myCustomEvent);
將以上代碼放在一起,完整的示例如下:
// 創建自定義事件
const myCustomEvent = new CustomEvent('myCustomEvent', {
detail: {
message: 'Hello, this is my custom event!',
otherInfo: 'Some additional data'
}
});
// 添加事件監聽器
document.addEventListener('myCustomEvent', (event) => {
console.log('Custom event triggered!');
console.log('Event details:', event.detail);
});
// 觸發自定義事件
document.dispatchEvent(myCustomEvent);
當自定義事件被觸發時,瀏覽器將執行與該事件關聯的所有事件監聽器。