最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do I get the value of each key pressed and use it in a variable with jQuery? - Stack Overflow

programmeradmin1浏览0评论

How do I get the value of each key pressed and use it in a variable with jQuery? I want to get a key pressed and reveal a certain picture on the page that correlates to that key right when it is pressed. I also ONLY want to target A-Z and "."

Thanks!

How do I get the value of each key pressed and use it in a variable with jQuery? I want to get a key pressed and reveal a certain picture on the page that correlates to that key right when it is pressed. I also ONLY want to target A-Z and "."

Thanks!

Share Improve this question asked Nov 22, 2011 at 5:35 Michael RaderMichael Rader 5,9678 gold badges36 silver badges44 bronze badges 1
  • what have u tried so far? post ur code ?? – Ghostman Commented Nov 22, 2011 at 5:37
Add a ment  | 

3 Answers 3

Reset to default 7

Using jQuery, you can use the keypress event, and then convert the character to a string, and match it against your criteria.

Here's a working example:

$(document).keypress(function(e)
{
    var s = String.fromCharCode(e.which);
    if (s.match(/[a-zA-Z\.]/))
        console.log(s + ' is a match!');
});

Update: For the key pressed inside another element, just use the selector $('#LearnStart'), as seen here.

heres a link for jquery Keypress function and how to use it

avoid having ids preceeding with #. with an input of id LearnStar you can insert a script like this:

$("#LearnStar").live("keypress",function(e)
{
    var s = String.fromCharCode(e.which);
    if (s.match(/[a-zA-Z\.]/))
        console.log(s + ' is a match!');
});

The live event basically takes care of the fact that if the control is rendered on the page after the script has been loaded.

You can do nifty stuff with this like prevent the user from typing non valid keys by using e.preventDefault() and returning false from the callback function.

发布评论

评论列表(0)

  1. 暂无评论