js获取所有的input框元素 给某个input框家焦点事件
Posted wssdx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取所有的input框元素 给某个input框家焦点事件相关的知识,希望对你有一定的参考价值。
@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();
以上是关于js获取所有的input框元素 给某个input框家焦点事件的主要内容,如果未能解决你的问题,请参考以下文章