最简单的JS一行代码判断页面是在pc端还是移动端打开方法

大部分场景下使用这个就够了,原生 JS 适应性好,判断准确

if(navigator.userAgent.match(/mobile/i)) {
	top.location='http://m.baidu.com/';
    isMobile = true;
}

你可能感兴趣的:(前端)