js获取屏幕高度/浏览器高度

2018-06-24 01:30:02来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

 1、window.screen.height

window.screen.height:设备显示屏的高度

(1)分辨率为1080px的显示屏

(2)手机屏

 

2、window.screen.availHeight

屏幕的可用高度

(1)分辨率为1080px的显示屏

(2)手机屏

 

3、document.body.clientHeight

当前文档中的body元素的高度

body高度为3000px的页面:

<!DOCTYPE html>
<html lang="zh">

    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <title>Document</title>
    </head>

    <body>
        <div style="height: 3000px;">

        </div>
    </body>

</html>

(1)PC端

 

(2)手机端

 

4、document.documentElement.clientHeight

Document.documentElement 是一个会返回文档对象(document)的根元素的只读属性(如HTML文档的 <html> 元素)

document.documentElement.clientHeight返回html的可用高度。

还是上例的3000px的代码

(1)pc端

 

(2)手机端

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:socket.io 出现的WebSocket is closed before the connection is

下一篇:【JavaScript】简介、&lt;Script&gt;标签及基本概念