获取屏幕的宽度和高度

Posted songtianfa

tags:

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

  在js中,特别是在一些功能,比如底部返回哪些按钮等,经常需要用到,这里综合运用以下,以便可以以后快速获取:

/**
 * 获取屏幕的宽度和高度
 * @returns {*}
 */
function client() {
    if(window.innerWidth){ // ie9+ 最新的浏览器
        return {
            width: window.innerWidth,
            height: window.innerHeight
        }
    }else if(document.compatMode === "CSS1Compat"){ // W3C
        return {
            width: document.documentElement.clientWidth,
            height: document.documentElement.clientHeight
        }
    }

    return {
        width: document.body.clientWidth,
        height: document.body.clientHeight
    }
}

  好了,至于怎么引入这个文件,想必大家都很熟悉了,这里就不一一介绍了。

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

swift常用代码片段

android 获取屏幕高度和宽度 的方法

Android中获取屏幕高度和宽度

如何获取 android Honeycomb 系统的屏幕宽度和高度?

怎样用 JavaScript 准确获取手机屏幕的宽度和高度

如何将获取的屏幕宽度之后传给css