const u = navigator.userAgent // 获取设备信息
const isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1 // android终端
const isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/) // ios终端
const mobile = u.indexOf('zzt') > -1 // ios真机
const isWeixin = u.indexOf('MicroMessenger') > -1// 微信终端
const isAlipay = u.indexOf('AlipayClient') > -1 //支付宝
const isiPad = u.indexOf('iPad') > -1 //iPad
const isIe = u.indexOf('Trident') > -1 //IE内核
const isOpera = u.indexOf('Presto') > -1 //opera内核
const isWebKit = u.indexOf('AppleWebKit') > -1 //谷歌内核
const isFirefox = u.indexOf('Firefox') > -1 //火狐内核