Js根据页面大小判断是否移动端

根据设备页面的大小,判断是否移动端打开。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 var oWidth = document.documentElement.clientWidth || document.body.clientWidth;
if (oWidth < 1200) {} else {
// window.location.href = "index.php";
}
window.addEventListener("orientationchange", function () {
var oWidth = document.documentElement.clientWidth || document.body.clientWidth;

if (oWidth < 1200) {

} else {
// window.location.href = "index.php";
}
}, false);
window.addEventListener("resize", function () {
var oWidth = document.documentElement.clientWidth || document.body.clientWidth;
if (oWidth < 1200) {} else {
// window.location.href = "index.php";
}
}, false);