利用 onload 事件,完成各终端页面适配

利用 onload 事件,完成各终端页面适配,第1张

DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Documenttitle>
head>

<body onload="init()">  
body>
html>
<script>
    function init() {
        if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {  //判断iPhone|iPad|iPod|iOS
            window.location.href = "./iPhone/index.html";
            // console.log(navigator.userAgent);  
        }
        else if (/(Android)/i.test(navigator.userAgent)) {          //判断Android
            window.location.href = "./Android/index.html";
            // console.log(navigator.userAgent); 
        }
        else {                                                      //pc
            window.location.href = "./pc/index.html";
            // console.log("pc");
        };
    }
script>

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/994704.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存