一聚教程网:一个值得你收藏的教程网站

热门教程

js获得屏幕宽度,网页宽度程序代码

时间:2022-11-14 22:02:46 编辑:袖梨 来源:一聚教程网

我们先来看一个实例

把以下这段代码放到之间或之间预览即可看到数据

代码如下 复制代码

我后来补充了一个大家可参考

代码如下 复制代码


function screenInfo(){
var s = "";
s += "/r/n网页可见区域宽:"+ document.body.clientWidth;
s += "/r/n网页可见区域高:"+ document.body.clientHeight;
s += "/r/n网页可见区域宽:"+ document.body.offsetWidth +" (包括边线的宽)";
s += "/r/n网页可见区域高:"+ document.body.offsetHeight +" (包括边线的宽)";
s += "/r/n网页正文全文宽:"+ document.body.scrollWidth;
s += "/r/n网页正文全文高:"+ document.body.scrollHeight;
s += "/r/n网页被卷去的高:"+ document.body.scrollTop;
s += "/r/n网页被卷去的左:"+ document.body.scrollLeft;
s += "/r/n网页正文部分上:"+ window.screenTop;
s += "/r/n网页正文部分左:"+ window.screenLeft;
s += "/r/n屏幕分辨率的高:"+ window.screen.height;
s += "/r/n屏幕分辨率的宽:"+ window.screen.width;
s += "/r/n屏幕可用工作区高度:"+ window.screen.availHeight;
s += "/r/n屏幕可用工作区宽度:"+ window.screen.availWidth;
alert(s);
}
screenInfo();


附另一个


利用了js的document.body.scrolltop document.body.scrollleft

window.pageyoffset做判断的哦。

代码如下 复制代码

function calc_scroll_xy()
{
_browser_scroll_x = 0;
_browser_scroll_y = 0;
if( typeof( window.pageyoffset ) == 'number' )
{
//netscape compliant
_browser_scroll_y = window.pageyoffset;
_browser_scroll_x = window.pagexoffset;
} else if( document.body && ( document.body.scrollleft || document.body.scrolltop ) )
{
//dom compliant
_browser_scroll_y = document.body.scrolltop;
_browser_scroll_x = document.body.scrollleft;
}
else if( document.documentelement && ( document.documentelement.scrollleft || document.documentelement.scrolltop ) )
{
//ie6 standards compliant mode
_browser_scroll_y = document.documentelement.scrolltop;
_browser_scroll_x = document.documentelement.scrollleft;
}
}

HTML精确定位:scrollLeft,scrollWidth,clientWidth,offsetWidth

scrollHeight: 获取对象的滚动高度。
scrollLeft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离
scrollTop:设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离
scrollWidth:获取对象的滚动宽度
offsetHeight:获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度
offsetLeft:获取对象相对于版面或由 offsetParent 属性指定的父坐标的计算左侧位置
offsetTop:获取对象相对于版面或由 offsetTop 属性指定的父坐标的计算顶端位置
event.clientX 相对文档的水平座标
event.clientY 相对文档的垂直座标
event.offsetX 相对容器的水平坐标
event.offsetY 相对容器的垂直坐标
document.documentElement.scrollTop 垂直方向滚动的值
event.clientX+document.documentElement.scrollTop 相对文档的水平座标+垂直方向滚动的量

IE,FireFox 差异如下:

IE6.0、FF1.06+:

clientWidth = width + padding

clientHeight = height + padding

offsetWidth = width + padding + border

offsetHeight = height + padding + border

IE5.0/5.5:
clientWidth = width - border

clientHeight = height - border

offsetWidth = width

offsetHeight = height

(需要提一下:CSS中的margin属性,与clientWidth、offsetWidth、clientHeight、offsetHeight均无关)

热门栏目