移动端使用JQ监听键盘事件,回车搜索

1.输入框类型设置为 search

2.监听键盘事件

$(".mobile-search-input").on('keypress', function (e) {
  if (e.keyCode == '13') {  //按下回车
    e.preventDefault();
    
    /*********/
  }
});

3.去除搜索框里的清空按钮

.mobile-search-input::-webkit-search-cancel-button {
    display: none;
}

你可能感兴趣的:(前端,jquery)