elementUI表格中的输入框触发事件后下一条数据的输入框获得焦点


如图,表格中的红色输入框触发事件(这里用的是回车事件)时,绿色输入框获得焦点。

<el-table-column

:show-overflow-tooltip="true"

:label="$t(&quot;table.registerInOut.tag&quot;)"

prop="tag"

align="center"

width="180px"

>

<template slot-scope="scope">

<el-input

:disabled="scope.row.disabled"

placeholder="扫描或输入编号"

v-model="scope.row.tag"

@keyup.enter.native="addAnswer(scope.row)"

auto-complete="off"

/>

</template>

</el-table-column>

回答

this.$refs[index].onEnter = () => {

this.$refs[index+1].focus()

}

以上是 elementUI表格中的输入框触发事件后下一条数据的输入框获得焦点 的全部内容, 来源链接: utcz.com/a/42661.html

回到顶部