developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifierState

 

KeyboardEvent.getModifierState()

The KeyboardEvent.getModifierState() method returns the current state of the specified modifier key: true if the modifier is active (that is the modifier key is pressed or locked), otherwise, false.

developer.mozilla.org

Caps Lock, Fn 키 등이 켜져 있는지의 여부를 키보드 이벤트

getModifierState 메소드로 확인할 수 있다

 

사용예시)

function 함수명(e) {

    if(e.getModifierState('CapsLock')){

       alert('CapsLock이 켜져있습니다');

    }

}

'배운 내용 정리 > JAVASCRIPT' 카테고리의 다른 글

서버에서 파라미터 넘길 때 에러  (0) 2020.12.30
escape(), encodeURI(), encodeURIComponent()  (0) 2020.12.08
toLocaleDateString - 요일 구하기  (0) 2020.11.30
arguments  (0) 2020.07.27
날짜 변환 함수  (0) 2020.07.23

+ Recent posts