123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- function phoneValidate(phone) {
- var reg =
- /^((13[0-9])|(14(0|[5-7]|9))|(15([0-3]|[5-9]))|(16(2|[5-7]))|(17[0-8])|(18[0-9])|(19([0-3]|[5-9])))\d{8}$/
- if (reg.test(phone)) {
- return true
- } else {
- return false
- }
- }
- function getQueryVariable(variable) {
- var query = window.location.search.substring(1)
- var vars = query.split('&')
- for (var i = 0; i < vars.length; i++) {
- var pair = vars[i].split('=')
- if (pair[0] == variable) {
- return pair[1]
- }
- }
- return false
- }
- function browser() {
- var u = navigator.userAgent
-
- return {
- trident: u.indexOf('Trident') > -1,
- presto: u.indexOf('Presto') > -1,
- webKit: u.indexOf('AppleWebKit') > -1,
- gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1,
- mobile: !!u.match(/AppleWebKit.*Mobile.*/),
- ios: !!u.match(/Mac OS X/),
-
- android: u.indexOf('DAYAAPPA') > -1 || u.indexOf('Adr') > -1,
- iPhone: u.indexOf('DAYAAPPI') > -1,
- isApp: u.indexOf('DAYAAPPI') > -1 || u.indexOf('DAYAAPPA') > -1 || u.indexOf('Adr') > -1,
- iPad: u.indexOf('iPad') > -1,
- webApp: u.indexOf('Safari') == -1,
- weixin: u.indexOf('MicroMessenger') > -1,
- qq: u.match(/\sQQ/i) == ' qq'
- }
- }
- function getUrlCode(name = 'code') {
-
- const url = location.search
- const theRequest = new Object()
- if (url.indexOf('?') != -1) {
- const str = url.substr(1)
- const strs = str.split('&')
- for (let i = 0; i < strs.length; i++) {
- theRequest[strs[i].split('=')[0]] = strs[i].split('=')[1]
- }
- }
- console.log(theRequest, 'theRequest')
- return theRequest[name]
- }
|