250x250
Notice
Recent Posts
Recent Comments
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

진스

(click,mousedown,mouseleave...)이벤트에 따른 프로퍼티 본문

JavaScript

(click,mousedown,mouseleave...)이벤트에 따른 프로퍼티

입방정 2022. 6. 23. 19:33
728x90

click,dbclick,mousedown,mouseup,mousemove,mouseenter,mouseleave 이벤트가 발생하면 생성되는 MouseEvnet 타입의 이벤트 객체는 고유의 프로퍼티를 갖는다.

 

마우스 포인터의 좌료 정보를 나타내는 프로퍼티:

clientX, offsetX, pageX, screenX
clientY, offsetY, pageY, screenY

  1. clientX : 브라우저 화면이 기준 => 스크롤은 무시
  2. offsetX : 이벤트가 걸려 있는 DOM객체를 기준
  3. pageX : 문서를 기준 => 스크롤 화면을 포함해서 측정
  4. screenX : 모니터 화면을 기준으로 좌표를 제공

버튼 정보를 나타내는 프로퍼티:

altKey, ctrlKey, shiftKey, button

728x90
Comments