我设置了一个桌面&移动Css,我将桌面放在index.html上,移动设备放在m.index.html上,但桌面上出现了桌面/笔记本电脑和移动设备。如何让移动设备运行
有人可以帮我处理代码
答案 0 :(得分:0)
由于index.html
是所有浏览器的默认页面(因为它被设置为目录的默认页面),因此您必须添加以下JavaScript您的index.html
页面将移动用户重定向到m.index.html
文件:
<script type="text/javascript">
if (screen.width<800) {
window.location="http://yourdomain.com/mobile/";
}
</script>