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

先看图

小程序输入框完成自动切换到下个输入框_第1张图片


	
 
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
		}
	},
}

即可实现功能

分享前端面试题库  以换工作后面试用的上

小程序输入框完成自动切换到下个输入框_第2张图片

 

你可能感兴趣的:(小程序,webview,蓝桥杯,linq)