码迷,mamicode.com
首页 > 其他好文 > 详细

m端访问pc端 让跳到对应m端

时间:2021-04-02 13:34:15      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:windows   navigator   ber   gen   window   phone   mat   and   black   

function isMobile(){
if( navigator.userAgent.match(/Android/i)|| navigator.userAgent.match(/webOS/i)|| navigator.userAgent.match(/iPhone/i)|| navigator.userAgent.match(/iPad/i)|| navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/Windows Phone/i))
{
return true;
}else{
return false;
}
}
console.log(isMobile());

if(isMobile()){
var str = window.location.href;
var href = str.replace("www","m");
window.location=href;
}

m端访问pc端 让跳到对应m端

标签:windows   navigator   ber   gen   window   phone   mat   and   black   

原文地址:https://www.cnblogs.com/songadmin/p/14609502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!