gpt4 book ai didi

javascript - 屏幕宽度与可见部分

转载 作者:可可西里 更新时间:2023-11-01 02:50:48 24 4
gpt4 key购买 nike

我对 JavaScript 有一个小问题,为了获得屏幕宽度,我们使用 screen.width 返回整体屏幕分辨率,是否有一个命令来获取浏览器可见部分的分辨率,比如当浏览器不可见时最大化?

最佳答案

function width(){
return window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth
|| 0;
}

function height(){
return window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight
|| 0;
}

使用它们返回可见窗口的height()width()

JSFiddle example.

关于javascript - 屏幕宽度与可见部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4987309/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com