android enter key event在jQuery中不起作用

时间:2018-10-31 06:57:48

标签: javascript android jquery html html5

jquery:

$('#search').keypress(function(e) {
  if (e.keyCode == 13) {
    $('#search').blur();
  }
});

HTML:

<div>
  <input id="search" type="text">
 </div>

我想在detect上像enter一样key event jquery(或走)mobile devices中的android,按下键后,我需要blur输入框字段。

但是我上面的jquery代码是not working。请帮我。

1 个答案:

答案 0 :(得分:1)

修改:

$('#search').on('keyup',function(e) { 
if (e.keyCode == 13) { 
$('#search').blur(); 
} 
});