我最近做了一个网站,无论出于何种原因,它在具有重叠 Div 等的移动设备上看起来真的很奇怪。我编写了这个:
window.addEventListener("resize", function(){
var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
if (width <= 1632 ) window.location.replace("https://officialivytech.com/mobileindex.html");
});