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

先看图
小程序|小程序输入框完成自动切换到下个输入框
文章图片



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

即可实现功能
【小程序|小程序输入框完成自动切换到下个输入框】分享前端面试题库以换工作后面试用的上
小程序|小程序输入框完成自动切换到下个输入框
文章图片




    推荐阅读