js 判断是android手机,iphone手机

来源:互联网 发布:网络安全措施部署 编辑:程序博客网 时间:2024/04/30 03:38
function isIphoneMobileDevice(){
    var ua = navigator.userAgent.toLowerCase();

    if (/iphone|ipod/.test(ua)) {

        if(/micromessenger/.test(ua)){

            //iphone 手机

             document.getElementById("popweixin").style.display = "block";
                document.getElementById("elem-Products_mobileShowCase01-001").style.display = "none";
            
        }

    }else{

             // 跳转连接

             window.location.href="";
    }

}


function isAndroidMobileDevice(){
       
         var ua = navigator.userAgent.toLowerCase();
           if(/android/i.test(ua)){
           if(/micromessenger/.test(ua)){
             document.getElementById("android").style.display = "block";
              document.getElementById("elem-FrontSlide_listJson01-001").style.display = "none";
             }else{
             window.location.href="****************************************";
        }
   
       }else{
             window.location.href="***********************************";
     }

}

0 0
原创粉丝点击