欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

正则匹配手机号

程序员文章站 2024-03-13 23:43:10
...
    let phon = this.data.phon
    var myreg = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1})|(17[0-9]{1}))+\d{8})$/;
    if (phon.length == 0) {
      wx.showToast({
        title: '输入的手机号为空',
        icon: 'none',
        duration: 1500
      })
      return false;
    } else if (phon.length < 11) {
      wx.showToast({
        title: '手机号长度有误!',
        icon: 'none',
        duration: 1500
      })
      return false;
    } else if (!myreg.test(phon)) {
      wx.showToast({
        title: '手机号有误!',
        icon: 'none',
        duration: 1500
      })
      return false;
    } else {
      wx.showToast({
        title: '正确!',
        icon: 'none',
        duration: 1500
      })
    }

 

相关标签: 微信小程序 js