我有这个简单的代码需要在用户将文本输入到 id 为“input1”的文本区域后触发。除了Android(我相信是4.1)仅将Enter按钮注册为按键外,它工作得很好。其他文本条目将被忽略。我的代码:
HTML
<textarea rows='4' cols='50' id='input1' maxlength='140' />
jQuery
$("#input1").keypress(function(key) {
console.log("text was entered...");
});