欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js实现PC端与客户端自适应

程序员文章站 2022-07-14 22:51:31
...

我们可以通过js来判断页面对象进行显示,

在外部引入css设定ID

<link rel="stylesheet" id="css" type="text/css" href="css/pc.css"/>

js代码如下

var newDoc=document.open("text/html","replace"); //重新加载引入
        window.onload=function(){
            //进入判断页面
             changeDivHeight();
        }
        window.onresize=function(){
            //监听页面宽度值
             changeDivHeight();
        }
             //执行判断命令
             function changeDivHeight(){    
                   //获取body的宽度            
                    var h = document.body.clientWidth 
                    if(h < 800)
                    {
                    //移动端    
                    document.getElementById('css').href='css/web.css'  //客户端
                    
                    newDoc.close();
                    }
                    else
                    {
                    //PC端
                    document.getElementById('css').href='css/pc.css'  //PC端
                    newDoc.close();
                    }
        }

我用的方法是通过js来判断页面的高度来定义大小,我这边设定是宽度800px,超过800我这边设定为PC端页面,引入pc.css,宽度小于800px,我这边设定为web端也就是手机进行显示引入web.css。

相关标签: 自适应