我发现如何在一定的分辨率下强制水平方向,并且在android工作正常,不幸的是,当窗口落在特定分辨率范围内时,它也会在桌面上旋转。
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "mobile.html";
}
//-->
</script>
我也在寻找一种方法将手机用户发送到另一个使用此系统的页面,但它也是基于设备的分辨率:
Cache-Control
我如何才能在Android和ios(我特别是Android)上获得强制水平方向?
或
如何将这些用户发送到另一个强制定位的页面?
谢谢!