Blogger Information
Blog 175
fans 1
comment 0
visits 385164
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
监听手机回车事件
dxp2tq的博客
Original
1370 people have browsed it

//监听手机回车事件
  $('#search_input').bind('keypress',function(event){
      if(event.keyCode == "13")
      {
          /*alert("你输入的内容为:"+ $('#search_input').val());*/
          var values = $('#search_input').val();
          $('#search_res_panel').css('display', 'block');
      }
  });

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post