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框家焦点事件的主要内容,如果未能解决你的问题,请参考以下文章

js获取子节点和修改input的文本框内容

jquery 怎么获取文本框输入的值

jquery怎么选取某个元素下面的所有的input元素

js 中怎么从input获取输入的value值

JS表单效验

我用js控制input文本框的值,使input文本框内容改变。