美文网首页
判断移动端或者PC端

判断移动端或者PC端

作者: 蜗牛和曼巴 | 来源:发表于2020-01-03 14:13 被阅读0次
created() {
   const ua = navigator.userAgent
    const ipad = ua.match(/(iPad).*OS\s([\d_]+)/)
    const isIphone = !ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/)
    const isAndroid = ua.match(/(Android)\s+([\d.]+)/)
   const isMobile = isIphone || isAndroid
   if (isMobile) {
       location.href = 'http://'
     } else {
       location.href = 'http://'
     }
   }

相关文章

网友评论

      本文标题:判断移动端或者PC端

      本文链接:https://www.haomeiwen.com/subject/xapzoctx.html