gpt4 book ai didi

javascript - 按下回车键时如何将焦点移到下一个字段?我尝试了很多方法但没有任何效果

转载 作者:行者123 更新时间:2023-11-28 03:22:38 26 4
gpt4 key购买 nike

 <!DOCTYPE html>

<html>

<head>

<title></title>

</head>

通过按 Enter 键在表单之间切换的 JavaScript 代码。

 <script type="text/javascript">

$(document).on('keypress', 'input,select', function (e) {

if (e.which == 13) {

e.preventDefault();

var $next = $('[tabIndex=' + (+this.tabIndex + 1) + ']');

console.log($next.length);

if (!$next.length) {

$next = $('[tabIndex=1]');
}

$next.focus();
}
});

</script>

<body>

创建表单

    <input type="number" name="" tabindex="1">

<input type="number" name="" tabindex="2">

<input type="number" name="" tabindex="3">

<input type="number" name="" tabindex="4">

</form>

</body>

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-

q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>

</html>

我尝试了很多方法,但在线运行的代码在我的电脑上不起作用。

最佳答案

您的代码可以工作,但有一些小错误需要修复。

  • 您的 JavaScript 代码需要放置在页脚中(/body 之前),位于 jQuery 脚本之后。
  • js代码需要放置在body或head标签中。
  • 您需要设置form标签。

这是您的代码,但工作版本:

<!DOCTYPE html>

<html>
<head>
<title></title>
</head>

<body>
<form>
<input type="number" name="" tabindex="1">
<input type="number" name="" tabindex="2">
<input type="number" name="" tabindex="3">
<input type="number" name="" tabindex="4">
</form>

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>

<script type="text/javascript">
$(document).on('keypress', 'input,select', function (e) {
if (e.which == 13) {
e.preventDefault();
var $next = $('[tabIndex=' + (+this.tabIndex + 1) + ']');
console.log($next.length);
if (!$next.length) {
$next = $('[tabIndex=1]');
}
$next.focus();
}
});
</script>
</body>
</html>

关于javascript - 按下回车键时如何将焦点移到下一个字段?我尝试了很多方法但没有任何效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58981500/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com