概述
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src='js/jquery-1.10.2.min.js'></script>
<script>
$(function(){
$('#form1').on('keydown','input',function(e){
e = e || window.event;
var key = e.keyCode || e.which || e.charCode;
if(key == 13){
var inputarray =
$('#form1 input');
nextindex = inputarray.index(this)+1;
if (nextindex>=inputarray.length)
{
nextindex=nextindex-1;
}
next = inputarray[nextindex];
next.focus();
}
return false;
});
})
</script>
</head>
<body>
<form action="" name='form1'
id='form1' method="post" >
<input type="text" name='user1' value='admin1' /><br/>
<input type="text" name='user2' value='admin2'/><br/>
<input type="text" name='user3' value='admin3'/><br/>
<input type="text" name='user4' value='admin4'/><br/>
<input type="text" name='user5' value='admin5' /><br/>
<textarea name="content" id="content" cols="30" rows="10"></textarea>
<button> ok </button>
</form>
</body>
</html>
转载于:https://www.cnblogs.com/pokalu/p/9295247.html
最后
以上就是虚幻羽毛为你收集整理的用jquery实现,表单input按回车进入下一个input的全部内容,希望文章能够帮你解决用jquery实现,表单input按回车进入下一个input所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复