小程序输入框完成自动切换到下个输入框
Posted 前端面试题库助手
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序输入框完成自动切换到下个输入框相关的知识,希望对你有一定的参考价值。
先看图
<view class="w-80 h-100 rad-10 b-a-9 tc f-50" v-for="(item,index) in 6">
<input class="w-80 h-100 " maxlength="1" type="text" @input="inputListener(index)" :focus="focus && (focusIndex == index)"/>
</view>
data()
return
focus: true,
code:[,,,,,],// 需要获取焦点的序号
focusIndex: 0
method:
// 输入时事件
inputListener(e)
if (this.focusIndex != e)this.focusIndex=e
if (e < 6)
this.focus=true,
this.focusIndex=e + 1
else
this.focus=false
,
即可实现功能
以上是关于小程序输入框完成自动切换到下个输入框的主要内容,如果未能解决你的问题,请参考以下文章
微信小程序多个input文本框如何实现输入完一个点击“下一项”切换到下一个文本框?