PHP程序员站--PHP编程开发平台
 当前位置:主页 >> 网页制作 >> Javascript >> 

js获取各种屏幕宽高代码

js获取各种屏幕宽高代码

来源:PHP程序员站  作者:PHP程序员站  发布时间:2011-06-17
javascript 取当前各种类型窗口宽高的代码 alert(网页可见区域宽: document.body.clientWidth:+document.body.clientWidth); alert(网页可见区域高: document.body.clientHeight:+document.body.clientHeight); alert(网页可见区域宽: document.body.offsetWidth

javascript 取当前各种类型窗口宽高的代码

alert("网页可见区域宽: document.body.clientWidth:"+document.body.clientWidth);
alert("网页可见区域高: document.body.clientHeight:"+document.body.clientHeight);
alert("网页可见区域宽: document.body.offsetWidth (包括边线的宽):"+document.body.offsetWidth);
alert("网页可见区域高: document.body.offsetHeight (包括边线的高):"+document.body.offsetHeight);
alert("网页正文全文宽: document.body.scrollWidth:"+document.body.scrollWidth);
alert("网页正文全文高: document.body.scrollHeight:"+document.body.scrollHeight);
alert("网页被卷去的高: document.body.scrollTop:"+document.body.scrollTop);
alert("网页被卷去的左: document.body.scrollLeft:"+document.body.scrollLeft);
alert("网页正文部分上: window.screenTop:"+window.screenTop);
alert("网页正文部分左: window.screenLeft:"+window.screenLeft);
alert("屏幕分辨率的高: window.screen.height:"+window.screen.height);


alert("屏幕分辨率的宽: window.screen.width:"+window.screen.width);
alert("屏幕可用工作区高度: window.screen.availHeight:"+window.screen.availHeight);
alert("屏幕可用工作区宽度: window.screen.availWidth:"+window.screen.availWidth);
 


延伸阅读:
js代码根据屏幕变化
css屏幕居中的方法,强
Android 2.3升级 提高Nexus S 屏幕效果
JavaScript获取屏幕的宽和高
横屏竖屏判断--全屏设置--取屏幕宽高
Tags: 屏幕   宽高  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号