小程序输入框完成自动切换到下个输入框

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文本框如何实现输入完一个点击“下一项”切换到下一个文本框?

微信小程序6位支付密码输入框

微信小程序输入框禁止自动弹出

winform 窗体,上面有4个textbox输入框,怎么实现输入框自动跳到下一输入框。

vue实现输入框中输完后光标自动跳到下一个输入框中

按下键盘的tab键,输入框的焦点就切换到下一个,这个效果怎么实现