- 01. 이벤트 메서드 : addEventListener("click") : 클릭했을 때
- 02. 이벤트 메서드 : addEventListener("scroll") : 스크롤했을 때
- 03. 이벤트 메서드 : addEventListener("resize") : 브라우저 사이즈 변경됐을 때
- 04. 이벤트 메서드 : addEventListener("selectstart") : 텍스트 선택을 시작 했을 때
- 05. 이벤트 메서드 : addEventListener("mousedown") : 마우스 버튼을 눌렀을 때
- 06. 이벤트 메서드 : addEventListener("mouseup") : 마우스 버튼을 떼는 경우
- 07. 이벤트 메서드 : addEventListener("mousemove") : 마우스 움직이는 경우
- 08. 이벤트 메서드 : addEventListener("drag") : 드래그 중인 경우
- 09. 이벤트 메서드 : addEventListener("dragstart") : 드래그 시작했을 때
- 10. 이벤트 메서드 : addEventListener("dragend") : 드래그 끝났을 때
- 10. 이벤트 메서드 : addEventListener("keydown") : 키 눌렀을 때(한번만 실행)
- 10. 이벤트 메서드 : addEventListener("keypress") : 키 눌렀을 때(누르고 있으면 계속 실행)
- 10. 이벤트 메서드 : addEventListener("keyup") : 키 누르고 땠을 때