回车input文本框循环获取焦点
input框,需要跳转的都加上 class=“input”
<input name="back_qty" id="back_qty" type="text" class="input" />
javascript
<script language="javascript"> $(function ($) { var inputs = $('.input'); inputs.eq(0).focus(); inputs.each(function(i,e){ $(e).keydown(function (ev){ var ev = window.event || ev; if (ev.keyCode == 13) { if ($(this).val() == '' || $(this).val() == null) { // spans.eq(i).show(); } else { // spans.eq(i).hide(); if (i < inputs.length - 1) { var nextIndex = i + 1; inputs.eq(nextIndex).focus(); } } } }); }); }); </script>