- 01. 이벤트 메서드 : addEventListener("click") (클릭 시)
- 01. 이벤트 메서드 : addEventListener("dbclick") (더블 클릭 시)
- 01. 이벤트 메서드 : addEventListener("load") (문서 로딩 종료 시)
- 01. 이벤트 메서드 : addEventListener("error") (문서가 정확히 로딩되지 않았을 때)
- 01. 이벤트 메서드 : addEventListener("scroll") (스크롤 시)
- 01. 이벤트 메서드 : addEventListener("resize") (브라우저 사이즈 변경 시)
- 01. 이벤트 메서드 : addEventListener("selectstart") (텍스트 선택 시작 시)
- 01. 이벤트 메서드 : addEventListener("mousedown") (마우스버튼 클릭 시)
- 01. 이벤트 메서드 : addEventListener("mouseup") (마우스버튼 클릭 후 뗄 시)
- 01. 이벤트 메서드 : addEventListener("mousemove") (마우스 이동 시)
- 01. 이벤트 메서드 : addEventListener("mouseenter") (요소 위에 포인터 요소 위치가 존재 시)
- 01. 이벤트 메서드 : addEventListener("mouseleave") (요소 위에 포인터 요소를 벗어날 시)
- 01. 이벤트 메서드 : addEventListener("mouseover") (요소 위에 포인터 위치가 존재할 시)
- 01. 이벤트 메서드 : addEventListener("mouseout") (요소 위에 포인터 요소를 벗어날 시)
- 01. 이벤트 메서드 : addEventListener("blur") (폼 요소의 포커스를 잃었을 시)
- 01. 이벤트 메서드 : addEventListener("change") (목록이나 체크 상태 등의 변경 시)
- 01. 이벤트 메서드 : addEventListener("focus") (폼 요소에 포커스를 두었을 시)
- 01. 이벤트 메서드 : addEventListener("reset") (폼이 리셋되었을 시)
- 01. 이벤트 메서드 : addEventListener("submit") (폼 있는 버튼 클릭 시)
- 01. 이벤트 메서드 : addEventListener("drag") (드래그 시)
- 01. 이벤트 메서드 : addEventListener("dragstart") (드래그 시작 시)
- 01. 이벤트 메서드 : addEventListener("dragend") (드래그 종료 시)
- 01. 이벤트 메서드 : addEventListener("dragenter") (요소의 위치에 드래그 시)
- 01. 이벤트 메서드 : addEventListener("dragover") (요소의 위치 위에 존재 시)
- 01. 이벤트 메서드 : addEventListener("dragleave") (요소의 위치에서 벗어날 시)
- 01. 이벤트 메서드 : addEventListener("drop") (요소의 위치에 드롭 시)
- 01. 이벤트 메서드 : addEventListener("keydown") (키 누를 시 (1번 실행))
- 01. 이벤트 메서드 : addEventListener("keypress") (키 누를 시 (누르고 있을 시 계속 실행))
- 01. 이벤트 메서드 : addEventListener("keyup") (키 누르고 뗄 시)
- 01. 이벤트 메서드 : addEventListener("touchstart") (터치 시작 시)
- 01. 이벤트 메서드 : addEventListener("touchmove") (터치가 이동 시)
- 01. 이벤트 메서드 : addEventListener("touchend") (터치 종료 시)
- 01. 이벤트 속성 : clientX - X축 좌표값 (브라우저 기준)
- 01. 이벤트 속성 : clientY - Y축 좌표값 (브라우저 기준)
- 01. 이벤트 속성 : offsetX - X축 좌표값 (요소 기준)
- 01. 이벤트 속성 : offsetY - Y축 좌표값 (요소 기준)
- 01. 이벤트 속성 : pageX - X축 좌표값 (페이지 기준)
- 01. 이벤트 속성 : pageY - Y축 좌표값 (페이지 기준)
- 01. 이벤트 속성 : screenX - X축 좌표값 (디바이스 기준)
- 01. 이벤트 속성 : screenY - Y축 좌표값 (디바이스 기준)