gpt4 book ai didi

javascript - 按 Enter 键移动到表格中的下一个单元格

转载 作者:行者123 更新时间:2023-12-01 02:31:52 28 4
gpt4 key购买 nike

我正在尝试创建一个表单,如果您在序列列上按 Enter 键,则下面的单元格将被选中。有人可以解决此任务的正确 jquery 公式吗?

我正在努力

$('.serial').keypress(function(e) {
console.log(this);
if (e.which == 13) {
$(this).nextAll('#serial').first().focus();
e.preventDefault();
}
});

http://jsfiddle.net/tYFcH/4/

最佳答案

假设您想在任何输入中按回车键时移动到下面的单元格,请使用以下命令:

$('table input').keypress(function(e) {
if (e.keyCode == 13) {
var $this = $(this),
index = $this.closest('td').index();

$this.closest('tr').next().find('td').eq(index).find('input').focus();
e.preventDefault();
}
});

这是你的 fiddle :http://jsfiddle.net/tYFcH/13/

关于javascript - 按 Enter 键移动到表格中的下一个单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14470963/

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