ENTER键可以让光标移到下一个输入框 用HTML写 谢谢

 我来答
典勇嘉谋
推荐于2018-02-27 · TA获得超过362个赞
知道小有建树答主
回答量:308
采纳率:100%
帮助的人:139万
展开全部
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gbk">
    <script type="text/javascript">
      function focusNextInput(thisInput){
          var inputs = document.getElementsByTagName("input");
          for(var i = 0;i<inputs.length;i++){
            // 如果是最后一个,则焦点回到第一个
            if(i==(inputs.length-1)){
              inputs[0].focus();
              break;
            }else if(thisInput == inputs[i]){
              inputs[i+1].focus();
              break;
            }
          }
      }  
    </script>
  </head>
<body>
  <table>
    姓名:<input type="text" onkeypress="if(event.keyCode==13) focusNextInput(this);">
    年龄:<input type="text" onkeypress="if(event.keyCode==13) focusNextInput(this);">
    工号:<input type="text" onkeypress="if(event.keyCode==13) focusNextInput(this);">
  </table>
</body>
</html>

↓JQUERY版↓
----------------------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
<script src="./jquery/jquery-1.11.1.min.js"></script>
<script>
$(function(){
$('input').bind('keypress',function(event){
if(event.keyCode == "13")    
{
    if($(this).is($('input').last())){
    // 回到第一个
    $('input').get(0).focus();
}else{
$(this).next().focus();
}
}
});
});
</script>
</head>
<body>
  <table>
    姓名:<input type="text">
    年龄:<input type="text">
    工号:<input type="text">
  </table
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式