js判断页面在移动端还是pc端

xiaoxiao2025-08-01  21

<script type="text/javascript">             function browserRedirect() {                 var sUserAgent = navigator.userAgent.toLowerCase();                 var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";                 var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";                 var bIsMidp = sUserAgent.match(/midp/i) == "midp";                 var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";                 var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";                 var bIsAndroid = sUserAgent.match(/android/i) == "android";                 var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";                 var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";                 if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {                     //跳转移动端页面                     window.location.href="http://f.jcngame.com/fanfan20171208/mobile/index.html";                 } else {                     //跳转pc端页面                     window.location.href="http://f.jcngame.com/fanfan20171208//fanmai/index.html";                 }             }             browserRedirect();          </script> ---------------------  作者:不亏  来源:  原文:https://blog.csdn.net/a419419/article/details/78752417  版权声明:本文为博主原创文章,转载请附上博文链接!

转载请注明原文地址: https://www.6miu.com/read-5034079.html

最新回复(0)