小程序判断手机号

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

你可能感兴趣的:(小程序)