重定向移动设备

Avatar of Chris Coyier
Chris Coyier on
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "mobile.html";
}
//-->
</script>

“mobile.html” 将被替换为您的移动版本所在的地址。此技巧也可以用于加载备用样式表。

专门针对 iPhone/iPod

<script language=javascript>
<!--
if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
   location.replace("http://url-to-send-them/iphone.html");
}
-->
</script>