简单的利用JS来判断页面是在手机端还是在PC端打开的方法

如何判断你的页面是在移动端还是在PC端打开的

Navigator对象

首先来了解一下Navigator 对象,Navigator 对象包含有关浏览器的信息,下面的userAgent 属性是一个只读的字符串,声明了浏览器用于 HTTP 请求的用户代理头的值。所以我们可以通过判断navigator.useragent里面是否有某些值来判断简单的利用JS来判断页面是在手机端还是在PC端打开的方法_第1张图片

mac打印出来的值为
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36

代码实现

window.location.href = /Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent) ? “https://www.baidu.com/” : “http://news.baidu.com/”;

以上代码利用了正则表达式和三目运算符,含义就是如果是移动端打开的话那就跳转到 “https:www.baidu.com/” ,如果不是就跳转到"http://new.baidu.com/"

if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = “https://www.baidu.com/”;
} else {
window.location.href = “http://news.baidu.com/”;
}

i也可以indexOf方法取代正则运算符

你可能感兴趣的:(前端理论知识-面试)