Using e.keyCode || e.which; how to determine the difference between lowercase and uppercase?

限于喜欢 提交于 2019-12-18 08:11:26

问题


I am using e.keyCode || e.which; to determine which key was pressed, but I am getting 65 for both a and A why is this happening and how can I detect the difference between the two?


回答1:


just use e.which in jquery. They normalize this value for all browsers.

Additionally you can check for e.shiftKey.




回答2:


Whether it's 'a' or 'A', 65 is the result of the key pressed on the keyboard and it's always 65 for that key.

The event will only specify which key is pressed and not its value; those are two separate things. You can test for event.shiftKey along with the key that you're looking for, but I don't believe that will handle the scenario where Caps Lock is enabled.




回答3:


This is spectacularly cross-browser-broken in vanilla JavaScript, which is why you should use Josiah Ruddell's solution. See this article for more than you want to know.




回答4:


keyCode won't indicate which character was input.
To truly find the character last entered by the user you will need to examine the value of the input and find the last character.




回答5:


This script is useful for small and capital letters press

<form>
    Char: <input type="text" id="char" size="15" /> Keycode: <input type="text" id="unicode" size="15" />
    </form>

    <script type="text/javascript">

    var charfield=document.getElementById("char")
    charfield.onkeypress=function(e){
    var e=window.event || e
    var keyunicode=e.charCode || e.keyCode
    document.getElementById("unicode").value=keyunicode
    }

    </script>


来源:https://stackoverflow.com/questions/4401305/using-e-keycode-e-which-how-to-determine-the-difference-between-lowercase-an

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!