我有2个网站,并希望使移动设备上的某人自动重定向到该网站。
我看过几个网站和视频,但无法使它们正常工作
我希望它将移动用户重定向到移动站点,并将PC / Mac用户保留在正常站点上。
答案 0 :(得分:3)
您可以使用简单的javascript代码。
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|OperaMini/i.test(navigator.userAgent) ) {
//code to be executed on mobile
}
答案 1 :(得分:1)
您可以检查屏幕尺寸是否小于699。
<script type="text/javascript">
if (screen.width <= 699) {
document.location = "mobile.html";
}
</script>