Front-End/JavaScript

    [JS] Event Delegation (이벤트 위임)

    이벤트 버블링 - Event Bubbling 이벤트 버블링은 특정 요소에서 이벤트가 발생했을 때 해당 이벤트를 상위 요소로 전달하는 특성입니다. const box1 = document.querySelector('#box1'); const box2 = document.querySelector('#box2'); const box3 = document.querySelector('#box3'); box1.addEventListener('click', () => { console.log('box1 Event'); }); box2.addEventListener('click', () => { console.log('box2 Event'); }); box3.addEventListener('click', () => { ..