获取屏幕的宽高

Posted asimpleday

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取屏幕的宽高相关的知识,希望对你有一定的参考价值。

function client(){
    if(window.innerHeight !== undefined){
        return {
            "width": window.innerWidth,
            "height": window.innerHeight
        }
    }else if(document.compatMode === "CSS1Compat"){
        return {
            "width": document.documentElement.clientWidth,
            "height": document.documentElement.clientHeight
        }
    }else{
        return {
            "width": document.body.clientWidth,
            "height": document.body.clientHeight
        }
    }
}

 

以上是关于获取屏幕的宽高的主要内容,如果未能解决你的问题,请参考以下文章

React NativeStyleSheet获取屏幕的宽高

React NativeStyleSheet获取屏幕的宽高

Android:如何获取屏幕的宽高

js和jquery获取屏幕宽高以及加margin和padding等边距的宽高

unity实用技能u3d 获取屏幕的宽高

获取屏幕宽高