What is the keyCode for “$”?

前端 未结 5 1916
萌比男神i
萌比男神i 2021-01-18 06:07

I am trying to disable all other characters from being entered in text input.

Since to get the $ you have to press the shift-key and the

5条回答
  •  别那么骄傲
    2021-01-18 06:35

    There is no onkeydown keycode, as previously said by ngmiceli

    Although, onkeypress keycode exists and is equal to 36.

    JavaScript Event KeyCode Test Page

提交回复
热议问题