element table 实现input输入框回车键跳入下一行,自动获取焦点

使用动态绑定ref  this.$refs获取的是一个所有id组成的对象。

使用Object.keys(this.$refs) //遍历这个对象,返回的是一个包含所有id组成的一个数组,让当前的index+1获取到下一个input的id.

再根据这个id 使用this.$refs获取到这个input 使用focus

<template slot-scope="scope">
                <el-input
                  class="year-leiji"
                  :ref='scope.row.id'
                  autocomplete="off"
                  v-model.number="scope.row.ljje"
                  @keydown.native="validateCounts(scope.row,scope.$index, $event)"
                ></el-input>
              </template>

 

    validateCounts(row,index, e) {
      
      const val = e.target.value;
      var keyCode = e.keyCode || e.which || e.charCode;
      if(keyCode=== 13) {
        this.submitYearLeiJi(row.id, val)
        this.$refs[row.id].blur()
        if(Object.keys(this.$refs).length-1 === index) {
            index = -1
        }
        this.$refs[Object.keys(this.$refs)[index + 1]].focus();
      }
    }

 

转载于:https://www.cnblogs.com/zhtian/p/10511027.html

GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45 7 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐