본문 바로가기

basic/Vanilla.js

keydown, keypress 이벤트 차이점

onKeyDown : 키를 눌렀을때 // 동작에 반응한다. 다만 한/영, print screen키는 인식하지 못한다.

onKeyPress : 키를 눌렀을때 // 눌러서 실제로 문자등이 입력됐을 때 반응한다. 따라서 ctrl, shift, alt, F1~F12,Enter등은 인식하지 못한다.

'basic > Vanilla.js' 카테고리의 다른 글

화살표 함수  (0) 2021.02.15
export와 import  (0) 2021.02.12
[Vanilla.js] Class  (0) 2021.02.09
[Vanilla.js] fetch()와 axios  (0) 2021.02.09
[Vanilla.js] Array.prototype.forEach() & Array.prototype.map(), for...in, for...of  (0) 2021.02.07