码迷,mamicode.com
首页 > Web开发 > 详细

js获取所有的input框元素 给某个input框家焦点事件

时间:2019-07-02 19:24:43      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:bsp   row   doc   span   获取   sele   ble   focus   onkeyup   

@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框家焦点事件

标签:bsp   row   doc   span   获取   sele   ble   focus   onkeyup   

原文地址:https://www.cnblogs.com/wssdx/p/11122179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!