根据设备页面的大小,判断是否移动端打开。
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);