如何检测用户是否在移动设备上并将他们重定向到移动网站?

时间:2019-04-01 05:41:24

标签: html css mobile

我有2个网站,并希望使移动设备上的某人自动重定向到该网站。

我看过几个网站和视频,但无法使它们正常工作

我希望它将移动用户重定向到移动站点,并将PC / Mac用户保留在正常站点上。

2 个答案:

答案 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>