如何使用jQuery .keyup()函数捕获键盘输入 [英] How to catch keyboard input with jQuery .keyup() function

查看:113
本文介绍了如何使用jQuery .keyup()函数捕获键盘输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

处理一个简单的刽子手游戏,我试图用 keyup()来捕获用户输入,但是当我将它记录到控制台时我就是意识到某事不正常......这是我的代码:

Working on a simple hangman game, and I'm trying to catch the user input with the keyup(), but when I log it to the console I'm realizing something isn't working right... this is my code:

$(document).keyup(function(e) {

    userInput = e.value;
    console.log(userInput);

});

我也试过这样做,但它也没有用。

I also tried doing this, but it isn't working either.

$(document).keyup(function(e) {

    userInput = $(this).val();
    console.log(userInput);

});

哦,顺便说一下, userInput是一个全局变量。

推荐答案

您必须从目标中获取 活动的属性。请尝试以下方式:

You have to get the value from target property of the event. Try the following way:

$('#txtInput').on('keyup', function(e) {

    var userInput = e.target.value;
    console.log(userInput);

});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Input: <input type='text' id="txtInput"/>

这篇关于如何使用jQuery .keyup()函数捕获键盘输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆