欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序 判斷手機(jī)號(hào)的實(shí)現(xiàn)代碼

 更新時(shí)間:2017年04月19日 14:50:02   投稿:lqh  
這篇文章主要介紹了微信小程序 判斷手機(jī)號(hào)的實(shí)現(xiàn)代碼的相關(guān)資料,需要的朋友可以參考下

微信小程序 判斷是否是手機(jī)號(hào)

JS實(shí)現(xiàn)代碼:

 validatemobile: function (mobile) {
  if (mobile.length == 0) {
        wx.showToast({
      title: '請(qǐng)輸入手機(jī)號(hào)!',
      icon: 'success',
      duration: 1500
     })
   return false;
  }
  if (mobile.length != 11) {
        wx.showToast({
      title: '手機(jī)號(hào)長(zhǎng)度有誤!',
      icon: 'success',
      duration: 1500
     })
   return false;
  }
  var myreg = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1})|(17[0-9]{1}))+\d{8})$/;
  if (!myreg.test(mobile)) {
        wx.showToast({
      title: '手機(jī)號(hào)有誤!',
      icon: 'success',
      duration: 1500
     })
   return false;
  }
  return true;
 }

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

相關(guān)文章

最新評(píng)論