Jquery 实现input回车时跳转到下一个input元素

Posted huangtailang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery 实现input回车时跳转到下一个input元素相关的知识,希望对你有一定的参考价值。

 
 
/**
 * 回车时跳转到下一个元素
 * @Author   HTL
 * @DateTime  2016-12-30T11:33:25+0800
 * @param     {[type]}                 $input [INPUT 元素列表]
 * @return    {[type]}                        [description]
 */
function keydown_to_tab($input){
  if(!$input) $input = $(input:text:not(:disabled));
  $input.bind("keydown", function(e) {
    var n = $input.length;
    if (e.which == 13){
          e.preventDefault(); //Skip default behavior of the enter key
          var nextIndex = $input.index(this) + 1;
          if(nextIndex < n)
              $input[nextIndex].focus();
          else
              $input[nextIndex-1].blur();
    }
  });
}

 

参考:





以上是关于Jquery 实现input回车时跳转到下一个input元素的主要内容,如果未能解决你的问题,请参考以下文章

页面中有多个input text框,怎么实现回车以后光标自动移动到下一个框,用jQuery实现

javascript/jquery 数据录入 按一次tab键就可以切换到下一行,如何实现?

PHP怎么实现一单击按钮就跳转到令一个页面

RecycleView 实现携程酒店图片滑动到最后一张时跳转到相册

RecycleView 实现携程酒店图片滑动到最后一张时跳转到相册

如何为viewpager添加单击事件实现界面跳转