获取屏幕的宽高
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 } } }
以上是关于获取屏幕的宽高的主要内容,如果未能解决你的问题,请参考以下文章