首页 > 热点 > 微信 > 正文

微信小程序手机号码验证功能的实例代码

2024-07-22 01:17:27
字体:
来源:转载
供稿:网友

wxml

<form bindsubmit='formSubmit'> <view class='all'>  <text>手机号:</text>  <input name="phone" placeholder='请输入手机号' type='number' style='color:#333' placeholder-style="color:#666" maxlength="11" bindinput='blurPhone'></input> </view> <button formType="submit">保存</button></form>

wxss

.all { border-top: 1rpx solid #efefef; border-bottom: 1rpx solid #efefef; height: 98rpx; font-size: 28rpx; display: flex; align-items: center;}button { width: 480rpx; height: 80rpx; background-color: #7ecffd; font-size: 30rpx; color: #fff; border-radius: 8px; margin: 50rpx auto;}

js

Page({ /**  * 页面的初始数据  */ data: {  ajxtrue: false, }, // 手机号验证 blurPhone: function(e) {  var phone = e.detail.value;  let that = this  if (!(/^1[34578]/d{9}$/.test(phone))) {   this.setData({    ajxtrue: false   })   if (phone.length >= 11) {    wx.showToast({     title: '手机号有误',     icon: 'success',     duration: 2000    })   }  } else {   this.setData({    ajxtrue: true   })   console.log('验证成功', that.data.ajxtrue)  } }, // 表单提交 formSubmit(e) {  let that = this  let val = e.detail.value  let ajxtrue = this.data.ajxtrue  if (ajxtrue == true) {   //表单提交进行  } else {   wx.showToast({    title: '手机号有误',    icon: 'success',    duration: 2000   })  } }, /**  * 生命周期函数--监听页面加载  */ onLoad: function(options) { }, /**  * 生命周期函数--监听页面初次渲染完成  */ onReady: function() { }, /**  * 生命周期函数--监听页面显示  */ onShow: function() { }, /**  * 生命周期函数--监听页面隐藏  */ onHide: function() { }, /**  * 生命周期函数--监听页面卸载  */ onUnload: function() { }, /**  * 页面相关事件处理函数--监听用户下拉动作  */ onPullDownRefresh: function() { }, /**  * 页面上拉触底事件的处理函数  */ onReachBottom: function() { }, /**  * 用户点击右上角分享  */ onShareAppMessage: function() { }})

下面看下微信小程序正则判断手机号的示例代码

var myreg = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1})|(17[0-9]{1}))+/d{8})$/;if (this.data.Del.length == 0) { wx.showToast({  title: '输入的手机号为空',  icon: 'success',  duration: 1500 }) return false;} else if (this.data.Del.length < 11) { wx.showToast({  title: '手机号长度有误!',  icon: 'success',  duration: 1500 }) return false;} else if (!myreg.test(this.data.Del)) { wx.showToast({  title: '手机号有误!',  icon: 'success',  duration: 1500 }) return false;} else { wx.showToast({  title: '填写正确',  icon: 'success',  duration: 1500 })}

总结

以上所述是小编给大家介绍的微信小程序手机号码验证功能的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对错新站长站网站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表