jQuery-按回车发送事件

Posted gol2q

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery-按回车发送事件相关的知识,希望对你有一定的参考价值。

##发送ajax请求

发送事件:输入关键词后,点回车

请求的参数:输入的关键字

请求地址:/share/search.do

##服务器处理

-Controller:调用Service层方法即可

-Service:

public ResultNote<List<Share>> searchNote(String keyWord){

  //拼接模糊查询

  String title = "%"+keyWord+"%";

   //模糊查询

  List<Share> list = shareDao.findLikeTitle(title);

  //构建返回结果

  ResultNote<List<Share>> result = new ResultNote<List<Share>>();

  ......

  result.setDate(list);

  return result;

}

-Dao(select):findLikeTitle

cn_share:select * from cn_share where xxx like %关键词%

 

Mapper中配置的sql语句:

select * from cn_share where cn_share_title like #{title}

 

##ajax回调处理

$("#input_id").keydown(function(event){

  var code = event.keyCode;

  if(code==13){

    //发送ajax请求

  }

})

以上是关于jQuery-按回车发送事件的主要内容,如果未能解决你的问题,请参考以下文章

jQuery - 按回车键触发跳转

jQuery实现回车键抬起触发事件

在 Struts 2 + jQuery + json 中按回车键停止提交表单

jquery如何解决一个页面,两个搜索按钮,按一下回车键指定触发指定按钮。

jquery中键盘按下事件

HTML,如何按回车提交表单