美文网首页
H5页面判断android或ios终端进行app下载

H5页面判断android或ios终端进行app下载

作者: 简小咖 | 来源:发表于2018-09-13 13:54 被阅读0次

    暂时只判断了android或ios终端,对于微信浏览器没有做相对应处理,但是通过else也可以进行判断跳转其他链接

        downApp() {
          let ua = navigator.userAgent.toLowerCase();
          var isAndroid = ua.indexOf('Android') > -1 || ua.indexOf('Adr') > -1; 
    //android终端
          var isiOS = !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
          if (isiOS) {
            //ios
            window.location.href = 'https://itunes.apple.com........'
          } else{
            // android
            window.location.href = 'http://..........'
          }
        },
    

    相关文章

      网友评论

          本文标题:H5页面判断android或ios终端进行app下载

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