js判断当前是移动端还是ios端

        var u = navigator.userAgent;
        var ua = u.toLowerCase();
        if (/iphone|ipad|ipod/.test(ua)) {  // iOS 系统 ->  跳AppStore下载地址
            //alert("iOS");
            
        } else if ( /android/.test(ua)) { // 安卓系统 -> 跳安卓端下载地址
            //alert("android");

        } else if (IsPC()){ 
            // alert("PC端")

        }

  

posted @ 2019-08-02 20:05  一只螺  阅读(2958)  评论(0编辑  收藏  举报