现在的短信验证码一般为4位或6位,则页面中会相应的显示4个或6个文本框,如图所示
当点击注册进入到输入验证码页面的时候,第一个框自动获取光标,依次输入,不可直接输入第三个或第四个框的值,
input输入框是循环出来的,代码如下:
第一第三行不解释,相信聪明的你可以看懂, 让我们一起看第二行,keyup是当键盘按下的时候执行的函数,ref则为传值,
= this.sms.numbers - 1 - this.sms.position && i < this.sms.numbers - 1 - this.sms.position + this.sms.numbers ? 1 : 0)
}
this.sms.show = arr
},_resetSms () {
this.sms.msg = []
for (var i = 0; i < this.sms.numbers; i++) {
this.sms.msg.push(null)
}
this.sms.position = 0
this._setSmsInputDisplay()
this.$nextTick(function () {
this.$refs.sms_input.focus()
})
}
submit () {
this.$api.post('signin',{
mobile: this.mobile,captcha: this.captcha
},r => {
this.$router.push('/main')
console.log(r)
})
},sms_input (e) {
if (e.keyCode === 8) { // 删除
if (this.sms.position > 0) {
this.sms.position--
this.sms.msg.splice(-2,1)
this.sms.msg.unshift(null)
this._setSmsInputDisplay()
}
} else if (e.keyCode >= 48 && e.keyCode <= 57) { // 仅可以输入数字
if (this.sms.position < this.sms.numbers - 1) {
this.sms.position++
this.sms.msg.splice(-1,1,String.fromCharCode(e.keyCode))
this.sms.msg.shift()
this.sms.msg.push(null)
this._setSmsInputDisplay()
} else {
document.activeElement.blur() // hide keyboard for iOS
console.log(this.sms.msg.join(''))
this.submit()
}
} else {
this.$refs.sms_input.value = '' // remove NaN
}
}
如此,便可实现验证码输入功能,代码清晰,聪明的你若有疑问,随时留言,我看到后定会秒回。
以上所述是小编给大家介绍的Vue.js实现移动端短信验证码功能。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持。
原文链接:https://www.f2er.com/vue/40375.html