移动端常用适配-界面自动跳转

通过 移动端常用适配方案一 的介绍之后,也说明了为什么不推荐该方案的原因之后,紧接着就是要介绍第二种适配编写方式如下:

  • 如何实现 PC 端一套代码, 移动端一套代码
  • 在 PC 端打开,自动打开 PC 端界面
  • 在移动端打开自动打开移动端界面

实现步骤

  • 默认打开 PC 端界面
  • 在 PC 端界面中通过 BOM 拿到当前浏览器信息
  • 通过正则判断当前浏览器是否是移动端浏览器
  • 通过 BOM 的 location 对象实现跳转到移动端界面

首先通过 BOM 拿到当前浏览器信息:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>模板文件</title>
</head>
<body>
<script>
    console.log(navigator.userAgent);
</script>
</body>
</html>

PC:

image-20211212221018045

IOS:

image-20211212221031793

Android:

image-20211212221049133

通过对如上信息的观察之后我们就可以得知一个方案,就是不同的适配端通过 BOM 拿到的信息是不同的,所以就可以根据该信息进行界面自动跳转如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>模板文件</title>
</head>
<body>
<script>
    function isPc() {
        let userAgentInfo = navigator.userAgent;
        if (/iphone/i.test(userAgentInfo)) {
            return false;
        } else if (/android/i.test(userAgentInfo)) {
            return false;
        }
        return true;
    }

    if (!isPc()) {
        location.href = "http://m.jd.com";
    }
</script>
</body>
</html>

image-20211212221222316

posted @ 2021-12-12 22:13  BNTang  阅读(123)  评论(0编辑  收藏  举报