【前端】根据设备信息进行页面跳转

var redirect = () => {
    let userAgent = navigator.userAgent.toLowerCase();
    let device = /ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mobile/;
    if(device.test(userAgent)) {
        // 跳转移动端页面
        window.location.href = 'move.html';
    } else {
        // 跳转PC端页面
        window.location.href = 'pc.html';
    }
}

redirect();

也可以根据设备型号、宽度做判断。跳转的逻辑也可以跟细腻一些。

上一篇:linux下使用 du查看某个文件或目录占用磁盘空间的大小


下一篇:NetApp闪存推出新软件剑指数据分析