标签:
屏幕分辨率的高: window.screen.height
屏幕分辨率的宽: window.screen.width
注解:电脑屏幕的分辨率(包括导航栏和滚动条)
屏幕可用区域的宽:
var w=window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
屏幕可见区域的高
var h=window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
注解:除去导航栏和滚动条
标签:
原文地址:http://www.cnblogs.com/yanze/p/5978030.html