微信小程序 判斷是不是手機號

  • 微信小程序 判斷是不是手機號
**JS實現代碼:**
`validatemobile:` `function` `(mobile) {`
`if` `(mobile.length == 0) {`
`wx.showToast({`
`title:` `'請輸入手機號!'``,`
`icon:` `'success'``,`
`duration: 1500`
`})`
`return` `false``;`
`}`
`if` `(mobile.length != 11) {`
`wx.showToast({`
`title:` `'手機號長度有誤!'``,`
`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:` `'手機號有誤!'``,`
`icon:` `'success'``,`
`duration: 1500`
`})`
`return` `false``;`
`}`
`return` `true``;`
`}`
歡迎加入全棧開發交流划水交流圈:582735936
面向划水1-3年前端人員
幫助突破划水瓶頸,提高思惟能力
相關文章
相關標籤/搜索