zl程序教程

您现在的位置是:首页 >  其它

当前栏目

scrollWidth,clientWidth,offsetWidth的区别

区别 clientWidth offsetWidth scrollWidth
2023-06-13 09:12:44 时间

大家好,又见面了,我是你们的朋友全栈君。

网页可见区域宽:document.body.clientWidth; 网页可见区域高:document.body.clientHeight; 网页可见区域高:document.body.offsetWeight: 网页可见区域高:document.body.offsetHeight; 网页正文全文宽:document.body.scrollWidth; 网页正文全文高:document.body.scrollHeight; 网页被卷去的高:document.body.scrollTop; 网页被卷去的左:document.body.scrollLeft; 网页正文部分上:window.screenTop; 网页正文部分左:window.screenLeft; 屏幕分辨率的高:window.screen.height; 屏幕分辨率的宽:window.screen.width; 屏幕可用工作区高度:window.screen.availHeight; 屏幕可用工作区宽度:window.screen.availWidth;

scrollWidth 是对象的实际内容的宽,不包边线宽度,会随对象中内容的多少改变(内容多了可能会改变对象的实际宽度)

clientWidth 是对象可见的宽度,不包滚动条等边线,会随窗口的显示大小改变。

offsetWidth 是对象的可见宽度,包滚动条等边线,会随窗口的显示大小改变。

———————————————— 一个scrollWidth和clientWidth的例子: <html> <head> <title>77.htm文件</title> </head>

<body> <textarea wrap=”off” οnfοcus=”alert(‘scrollWidth:’+this.scrollWidth+’/n clientWidth:’+this.clientWidth);”></textarea> </body> </html> 在文本框内输入内容,当横向滚动条没出来前scrollWidth和clientWidth的值是一样的。 当一行内容超出文本框的宽度,就有横向滚动条出来了,scrollWidth的值就变了。 scrollWidth是对象实际内容的宽度。 clientWidth是对象看到的宽度(不含边线),这个例子里不会改变。

———————————————– 一个clientWidth和offsetWidth的例子: <html> <head> <title>77.htm文件</title> </head>

<body> <textarea wrap=”off” οnfοcus=”alert(‘offsetWidth:’+this.offsetWidth+’/n clientWidth:’+this.clientWidth);”></textarea> </body> </html>

offsetWidth的值总是比clientWidth的值打 clientWidth是对象看到的宽度(不含边线) offsetWidth是对象看到的宽度(含边线,如滚动条的占用的宽)

top、postop、scrolltop、scrollHeight、offsetHeight

1. top

此属性仅仅在对象的定位(position)属性被设置时可用。否则,此属性设置会被忽略。

<div style=”background-color:red; position:absolute; width:100px; height:100px;”>

<p style=”background-color:silver; position:absolute; top:-5px;”>测试top</p>

</div>

上面是一个段落P包含在一个DIV内,可以看到P的top设置为-5px后,它的上边距超过了容器DIV的上边距,超过的这段距离就是设置的5px。

需要注意的是,DIV和P这一对包含元素,都需要设置position为absolute才能得到想要的结果,假如父元素不设置,则子元素的参照将是更上层定义过position的元素,直到整个文档;

2. posTop

posTop的数值其实和top是一样的,但区别在于,top固定了元素单位为px,而posTop只是一个数值(这一点可以通过alert(“top=”+id.style.top)和alert(“posTop=”+id.style.posTop)来证明),因此一般使用posTop来进行运算。

<div style=”background-color:red; position:absolute; width:100px; height:100px;”>

<p id=”test” style=”background-color:silver; position:absolute;”>测试posTop</p>

</div>

<script> test.style.posTop = 15+8; alert(“top=”+test.style.top); alert(“posTop=”+test.style.posTop); </script>

无论你使用top或posTop来赋值,最后的结果都是一致的

3. scrollTop

<div id=”container” style=”background-color:silver; width:100px; height:100px; overflow:auto;”> <p style=”background-color:red;”> 别再做情人 做只猫 做只狗 不做情人 做只宠物至少可爱迷人 和你相交不浅无谓明日会被你憎</p> </div>

<script> container.scrollTop = 12; </script>

这一段文本在这个100*100的DIV内无法完全显示,所以设置了overflow为auto,它会出现一个上下方向的滑动框,假如没有设置id.scrollTop属性的话,默认情况下滑块位置在顶端。而设置了scrollTop值为12后,滑块的位置改变了,默认显示是卷过了12个象素的文本。如果设置overflow为hidden,则将会无法显示顶部12个象素的文本。

注意设置方式是id.scrollTop,而不是id.style.scrollTop。

4. scrollHeight 与 offsetHeight

offsetHeight是自身元素的高度,scrollHeight是 自身元素的高度+隐藏元素的高度。

<div id=”container” style=”background-color:silver; width:100px; height:100px; overflow:auto;”> <p style=”background-color:red; height:250px; “> 别再做情人 做只猫 做只狗 不做情人 做只宠物至少可爱迷人 和你相交不浅无谓明日会被你憎</p> </div>

<script> alert(container.offsetHeight); alert(container.scrollHeight); </script>

将依次输出100,250。因为已经指定了元素的height为100px,所以offsetHeight始终为100px;内部元素为250px,而容器元素只有100px,那么还有150px的内容它无法显示出来,但它却是实际存在的,所以scrollHeight值为100+150=250。

另外document.body.clientWidth和document.documentElement.clientWidth有如下区别:

如果在页面中添加W3C标准标记:

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”>

在IE中: document.body.clientWidth ==> BODY对象宽度 document.body.clientHeight ==> BODY对象高度 document.documentElement.clientWidth ==> 可见区域宽度 document.documentElement.clientHeight ==> 可见区域高度 在FireFox中: document.body.clientWidth ==> BODY对象宽度 document.body.clientHeight ==> BODY对象高度 document.documentElement.clientWidth ==> 可见区域宽度 document.documentElement.clientHeight ==> 可见区域高度 ? 在Opera中: document.body.clientWidth ==> 可见区域宽度 document.body.clientHeight ==> 可见区域高度 document.documentElement.clientWidth ==> 页面对象宽度(即BODY对象宽度加上Margin宽) document.documentElement.clientHeight ==> 页面对象高度(即BODY对象高度加上Margin高)

而如果没有定义W3C的标准,则 IE为: document.documentElement.clientWidth ==> 0 document.documentElement.clientHeight ==> 0 FireFox为: document.documentElement.clientWidth ==> 页面对象宽度(即BODY对象宽度加上Margin宽)

document.documentElement.clientHeight ==> 页面对象高度(即BODY对象高度加上Margin高) Opera为: document.documentElement.clientWidth ==> 页面对象宽度(即BODY对象宽度加上Margin宽)

document.documentElement.clientHeight ==> 页面对象高度(即BODY对象高度加上Margin高)

——————————————————————————————————-

top、clientTop、scrollTop、offsetTop等介绍

2009-04-09 16:48

scrollHeight: 获取对象的滚动高度。  scrollLeft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离 scrollTop:设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离 scrollWidth:获取对象的滚动宽度

offsetHeight:获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度 offsetLeft:获取对象相对于版面或由 offsetParent 属性指定的父坐标的计算左侧位置 offsetTop:获取对象相对于版面或由 offsetTop 属性指定的父坐标的计算顶端位置 offsetWidth:是对象的可见宽度,包滚动条等边线,会随窗口的显示大小改变 event.clientX 相对文档的水平座标 event.clientY 相对文档的垂直座标

clientWidth:是对象可见的宽度,不包滚动条等边线,会随窗口的显示大小改变。 clientHeight:都认为是内容可视区域的高度,也就是说页面浏览器中可以看到内容的这个区域的高度,一般是最后一个工具条以下到状态栏以上的这个区域,与页面内容无关。

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均无关)

<html> <head> <title></title> <meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″> <style type=”text/css”> </style> </head> <body> <SCRIPT LANGUAGE=”JavaScript”> 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); </SCRIPT> </body> </html>

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/163021.html原文链接:https://javaforall.cn