[mobile]监听手机mobile上面软键盘的回车[enter]事件

$(document).keypress(function(e) {
                if(e.which == 13) {
                    
                   if(!$(".qaSearchInput").val())
                   {
                       Hnb.ui.showError('搜索内容不能为空' , 300);
                       return ;
                   } else {
                      
                       $("#id_qa_search_box").submit();
                   }
                }
            });
原文地址:https://www.cnblogs.com/shuman/p/5051696.html