首页 > 代码库 > Jquery 实现input回车时跳转到下一个input元素
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(); } });}
参考:
how-to-set-focus-on-next-textbox-on
From WizNote
Jquery 实现input回车时跳转到下一个input元素
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。