如何在不使用任何按钮的情况下从文本字段中获取数据?

时间:2015-06-10 08:37:34

标签: android textbox enter

用户在文本字段中输入5位数字,不按任何按钮,必须在模拟器上重新选择。我知道如何将数据写入模拟器我只是想知道如何在没有点击任何按钮的情况下输入5位数时获取该用户数据,按下输入必须获取文本字段中的数据。

1 个答案:

答案 0 :(得分:0)

你问过:“我只是想知道如何在没有点击任何按钮的情况下输入5位数时获取此用户数据,按下输入文本字段中的数据必须是取出“。

这里是如何,使用按键事件。我还将文本输入限制为5个字符,maxlength =“5”。

$(document).ready(function() {
    $("input").keypress(function(e) {
        var key = e.which;
        if (key == 13) // the enter key code
        {
            if ($("input").val().length == 5) {
                //you get the value with $("input").val()
                alert($("input").val());
            }
        }
    });
});
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
Enter 5 characters: <input type="text" id="input" maxlength="5">