<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/jquery-1.11.1.js"></script>
<script>
$(function () {
$("input").on("keyup",function (e) {
if (e.keyCode===13){
//跳转到下一行
/* $(this).next().next().focus();*/
$(this).next().next()[0].focus(); }
});
/*//获取所有内容
$("input").on("mouseenter",function (e) {
$(this).select();
});*/
})
</script>
</head>
<body>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
</body>
</html>
回车换行
最新推荐文章于 2023-07-18 19:06:00 发布