开发者

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

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 det开发者_如何学编程ect the difference between the two?


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

Additionally you can check for e.shiftKey.


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.


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.


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.


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>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜