@keyup.native="tdItem.onKeyUp($event, trItem, trIndex)"
(item , row , index)
// 获取所有input
let inputAll = document.querySelectorAll(‘.table_input input‘);
// 向上键盘 =38
if (item.keyCode === 38) {
newIndex -= 1;
if (inputAll[newIndex]) {
inputAll[newIndex].focus();
}
}
// 向下键盘 =40
if (item.keyCode === 40) {
newIndex += 1;
if (inputAll[newIndex]) {
inputAll[newIndex].focus();
}
}
原文地址:https://www.cnblogs.com/wssdx/p/11122179.html
时间: 2024-12-14 13:57:25