✅ 1. 이벤트(Event)란?

image.png


✅ 2. 이벤트 리스너(Event Listener)


✅ 3. 이벤트 리스너 예제 비교

<!-- HTML 태그 내부 -->
<p onmouseover="this.style.backgroundColor='orchid'">올려보세요</p>

<!-- DOM 프로퍼티 이용 -->
p.onmouseover = function () { this.style.backgroundColor = 'orchid'; };

<!-- addEventListener 사용 -->
p.addEventListener("mouseover", function () {
  this.style.backgroundColor = "orchid";
});

✅ 4. 이벤트 객체 (Event Object)

function f(e) {
  alert(e.type);  // 이벤트 타입 출력
}

✅ 5. 이벤트 기본 동작 방지 (preventDefault)

<!-- 링크 이동 방지 -->
<a href="<http://naver.com>" onclick="event.preventDefault();">네이버</a>