오늘도 좋은아침~!!!

개발/JavaScript

[TS]event종류

리히 2024. 6. 29. 20:45
반응형
  • Event

    • abort
    • animationcancel
    • animationend
    • animationiteration
    • animationstart
    • auxclick
    • beforeinput
    • beforetoggle
    • blur
    • cancel
    • canplay
    • canplaythrough
    • change
    • click
    • close
    • compositionend
    • compositionstart
    • compositionupdate
    • contextmenu
    • copy
    • cuechange
    • cut
    • dblclick
    • drag
    • dragend
    • dragenter
    • dragleave
    • dragover
    • dragstart
    • drop
    • durationchange
    • emptied
    • ended
    • error
    • focus
    • focusin
    • focusout
    • formdata
    • gotpointercapture
    • input
    • invalid
    • keydown
    • keypress
    • keyup
    • load
    • loadeddata
    • loadedmetadata
    • loadstart
    • lostpointercapture
    • mousedown
    • mouseenter
    • mouseleave
    • mousemove
    • mouseout
    • mouseover
    • mouseup
    • paste
    • pause
    • play
    • playing
    • pointercancel
    • pointerdown
    • pointerenter
    • pointerleave
    • pointermove
    • pointerout
    • pointerover
    • pointerup
    • progress
    • ratechange
    • reset
    • resize
    • scroll
    • scrollend
    • securitypolicyviolation
    • seeked
    • seeking
    • select
    • selectionchange
    • selectstart
    • slotchange
    • stalled
    • submit
    • suspend
    • timeupdate
    • toggle
    • touchcancel
    • touchend
    • touchmove
    • touchstart
    • transitioncancel
    • transitionend
    • transitionrun
    • transitionstart
    • volumechange
    • waiting
    • webkitanimationend
    • webkitanimationiteration
    • webkitanimationstart
    • webkittransitionend
    • wheel
    • mousedown
    • mouseup
    • click

click=mousedown+mouseup

 

Def.

interface GlobalEventHandlersEventMap {
    "abort": UIEvent;
    "animationcancel": AnimationEvent;
    "animationend": AnimationEvent;
    "animationiteration": AnimationEvent;
    "animationstart": AnimationEvent;
    "auxclick": MouseEvent;
    "beforeinput": InputEvent;
    "beforetoggle": Event;
    "blur": FocusEvent;
    "cancel": Event;
    "canplay": Event;
    "canplaythrough": Event;
    "change": Event;
    "click": MouseEvent;
    "close": Event;
    "compositionend": CompositionEvent;
    "compositionstart": CompositionEvent;
    "compositionupdate": CompositionEvent;
    "contextmenu": MouseEvent;
    "copy": ClipboardEvent;
    "cuechange": Event;
    "cut": ClipboardEvent;
    "dblclick": MouseEvent;
    "drag": DragEvent;
    "dragend": DragEvent;
    "dragenter": DragEvent;
    "dragleave": DragEvent;
    "dragover": DragEvent;
    "dragstart": DragEvent;
    "drop": DragEvent;
    "durationchange": Event;
    "emptied": Event;
    "ended": Event;
    "error": ErrorEvent;
    "focus": FocusEvent;
    "focusin": FocusEvent;
    "focusout": FocusEvent;
    "formdata": FormDataEvent;
    "gotpointercapture": PointerEvent;
    "input": Event;
    "invalid": Event;
    "keydown": KeyboardEvent;
    "keypress": KeyboardEvent;
    "keyup": KeyboardEvent;
    "load": Event;
    "loadeddata": Event;
    "loadedmetadata": Event;
    "loadstart": Event;
    "lostpointercapture": PointerEvent;
    "mousedown": MouseEvent;
    "mouseenter": MouseEvent;
    "mouseleave": MouseEvent;
    "mousemove": MouseEvent;
    "mouseout": MouseEvent;
    "mouseover": MouseEvent;
    "mouseup": MouseEvent;
    "paste": ClipboardEvent;
    "pause": Event;
    "play": Event;
    "playing": Event;
    "pointercancel": PointerEvent;
    "pointerdown": PointerEvent;
    "pointerenter": PointerEvent;
    "pointerleave": PointerEvent;
    "pointermove": PointerEvent;
    "pointerout": PointerEvent;
    "pointerover": PointerEvent;
    "pointerup": PointerEvent;
    "progress": ProgressEvent;
    "ratechange": Event;
    "reset": Event;
    "resize": UIEvent;
    "scroll": Event;
    "scrollend": Event;
    "securitypolicyviolation": SecurityPolicyViolationEvent;
    "seeked": Event;
    "seeking": Event;
    "select": Event;
    "selectionchange": Event;
    "selectstart": Event;
    "slotchange": Event;
    "stalled": Event;
    "submit": SubmitEvent;
    "suspend": Event;
    "timeupdate": Event;
    "toggle": Event;
    "touchcancel": TouchEvent;
    "touchend": TouchEvent;
    "touchmove": TouchEvent;
    "touchstart": TouchEvent;
    "transitioncancel": TransitionEvent;
    "transitionend": TransitionEvent;
    "transitionrun": TransitionEvent;
    "transitionstart": TransitionEvent;
    "volumechange": Event;
    "waiting": Event;
    "webkitanimationend": Event;
    "webkitanimationiteration": Event;
    "webkitanimationstart": Event;
    "webkittransitionend": Event;
    "wheel": WheelEvent;
}

Ref.

afterprint : http://www.devdic.com/javascript/reference/dom/interface:215/EventTarget
W3School,event : https://www.w3schools.com/jsref/dom_obj_event.asp
jQuery,event,category : https://api.jquery.com/category/events/
jQuery,event,type : https://api.jquery.com/Types/#Event
event,sunover : https://suover.com/jquery-%EC%A0%9C%EC%9D%B4%EC%BF%BC%EB%A6%AC-%EC%9D%B4%EB%B2%A4%ED%8A%B8-event-%EC%A2%85%EB%A5%98-%EB%B0%8F-%EC%84%A4%EB%AA%85/
event,naverBlog : https://blog.naver.com/silmelove/30015895750
mouseOver*mouseEnter : https://velog.io/@commi1106/MouseOver%EC%99%80-MouseEnter%EC%9D%98-%EC%B0%A8%EC%9D%B4-%EC%9D%B4%EB%B2%A4%ED%8A%B8-%EB%B2%84%EB%B8%94%EB%A7%81

 

 

 

 

728x90
반응형