当前位置:首页 > 网站入侵 > 正文内容

js判断是否手机端,相对域名跳转到对应的m.手机站

访客3年前 (2022-04-21)网站入侵557
<script type="text/javascript">(function(Switch) {    var switch_pc = window.location.hash;    var curURL = document.location.href; //当前URL     var isMobile = curURL.indexOf("http://m."); //断定 当前URL是不是脚机站     var isPc = curURL.indexOf("http://www."); //断定 当前URL是可包括 "http://www."     if (isMobile < 0) { //没有是脚机站         if (isPc < 0) { //没有包括 "http://www."         var thisURL = curURL.replace(/^http:\/\//, "http://m.");     } else { // 包括 "http://www."         var thisURL = curURL.replace(/^http:\/\/www\./, "http://m.");     }   }  if (switch_pc != "#pc") {    if (/iphone|ipod|ipad|ipad|Android|nokia|blackberry|webos|webos|webmate|bada|lg|ucweb|skyfire|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|wap|mobile/i.test(navigator.userAgent.toLowerCase())) {       Switch.location.href = thisURL;     }     document.write('<meta name="mobile-agent" content="format=html 五;url=' + thisURL + '" />');   } })(window);</script>


标签: JS实例
分享给朋友:

评论列表

寻妄寒洲
2年前 (2022-08-16)

e = curURL.indexOf("http://m."); //断定 当前URL是不是脚机站    var isPc = curURL.indexOf("

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。