JS 判断手机端 电脑端 (同一个页面在手机和电脑端各表现出不一样的功能 )

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_41669475/article/details/81364438
<script type="text/javascript"> 
   
            //平台、设备和操作系统 
            var system = { 
                win: false, 
                mac: false, 
                xll: false, 
                ipad:false 
            }; 
            //检测平台 
            var p = navigator.platform; 
            system.win = p.indexOf("Win") == 0; 
            system.mac = p.indexOf("Mac") == 0; 
            system.x11 = (p == "X11") || (p.indexOf("Linux") == 0); 
            system.ipad = (navigator.userAgent.match(/iPad/i) != null)?true:false; 
            //跳转语句
            if (system.win || system.mac || system.xll||system.ipad) { 
            
             window.location.href = "电脑要跳转的页面"; 
            } else { 
     
             window.location.href =  "手机要跳转的页面"; 
            } 
    
    </script> 
</html>

猜你喜欢

转载自blog.csdn.net/qq_41669475/article/details/81364438