문제

Is it possible to check the status of Scroll Lock, Num Lock and Caps Lock on page load of a web page? I've found ways to check after a keypress using JavaScript, but that's not what I'm asking.

도움이 되었습니까?

해결책

No, you can't get system state from javascript. You will need them to type something and then analyze the input. Probably not what you wanted to hear =/

다른 팁

IN 2019, this is now possible:

var x = event.getModifierState("ScrollLock"); 

Source: https://www.w3schools.com/jsref/event_mouse_getmodifierstate.asp

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top