offsetWidth与offsetLeft

offsetWidth与offsetLeft1、offsetWidth:为元素的width+元素的padding+边框的宽度如图:2、offsetLeft、offsetTop、offsetRight、offsetBottom以offsetLeft为例进行说明,在不同的浏览器中其值不同,且与父元素的position属性(relative,absolute,fixed)有关。现分以下几种情况说明:(测试所用的浏览…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全家桶1年46,售后保障稳定

1、offsetWidth: 为元素的width+元素的padding+边框的宽度

如图:offsetWidth与offsetLeft

2、offsetLeft、offsetTop、offsetRight、offsetBottom

以offsetLeft为例进行说明,在不同的浏览器中其值不同,且与父元素的position属性(relative,absolute,fixed)有关。现分以下几种情况说明:(测试所用的浏览器版本为:Chrome 68.0.3440.106, opera54.0, Firefox61.0.1和IE11.0)

2.1在父元素均不设置position属性时,在Chrome,opera和IE浏览器中offsetLeft是元素边框外侧到浏览器窗口内侧的距离且body.offsetLeft=0,

offsetWidth与offsetLeft

在firefox浏览器中offsetLeft是元素边框外侧到body内侧的距离body.offsetLeft=-边框宽度

如图:

offsetWidth与offsetLeft

2.2当父元素设置position元素时又分为两种情况,

2.2.1如果父元素是body且body设置了position属性,在Chrome和opera浏览器中offsetLeft是元素边框外侧到body边框外侧的距离,

offsetWidth与offsetLeft

在IE和fireForx浏览器中offsetLeft是元素边框外侧到body边框内侧的距离

offsetWidth与offsetLeft

2.2.2如果父元素不是body元素且设置了position属性时,offsetLeft为元素边框外侧到父元素边框内侧的距离(各浏览器情况一致)。

如图

offsetWidth与offsetLeft

3、下面通过实例进行说明(Chrome浏览器):

Html结构为

offsetWidth与offsetLeft

Css样式:将body,container,box, content的margin和padding都设置为10px,container长宽为300px,box长宽为100px,content长宽为50px,都设置宽度为5px的边框。具体查看下方源代码。效果如下图

offsetWidth与offsetLeft

3.1 offsetWidth

container.offsetWidth =container的width+padding+边框宽度=300+2×10+2×5=330

console.log(container.offsetWidth)输出结果为

offsetWidth与offsetLeft

3.2

3.2.1父元素均不设置position属性

document.body.offsetLeft=0

document.body.offsetLeft= container边框外侧到窗口内侧的距离=body.margin+body边框宽度+container.margin+container.padding+container的left=10+5+10+10=35px;

aBoxes[0].offsetLeft=第一个div.box边框外侧到窗口内侧的距离=body.margin+body边框宽度+container.margin+container.padding+container边框宽度+box.margin+box.padding=10+5+10+10+5+10+10px=60px;

console.log(document.body.offsetLeft)

console.log(document.body.offsetLeft)

console.log(aBoxes[0].offsetLeft)输出结果为

offsetWidth与offsetLeft

2.2.2将body的position设置为relative

 document.body.offsetLeft=0

   container.offsetLeft=container边框外侧到body边框外侧的距离= body边框宽度+container.margin+container.padding =5+10+10=25px;

aBoxes[0].offsetLeft=第一个div.box边框外侧到body边框外侧的距离= body边框宽度+container.margin+container.padding+container边框宽度+box.margin+box.padding=5+10+10+5+10+10px=50px;

console.log(document.body.offsetLeft);

console.log(container.offsetLeft);

console.log(aBoxes[0].offsetLeft);输出结果为

offsetWidth与offsetLeft

2.2.3将container的position设置为relative,并设置其left为100px,body不设置position属性。

oContainer.offsetLeft= 为container边框外侧到窗口内侧的距离=body.margin+body边框宽度+container的left+container.margin+container.padding+container的left=10+5+100+10+10=135;

   aBoxes[0].offsetLeft=第一个div.box边框外侧到container边框内侧的距离= container.padding+box.margin=10+10px=20;

    aBoxes[1].offsetLeft= 第二个div.box边框外侧到container边框内侧的距离= container.padding + box.margin +box.offsetWidth+2*box.margin=10+10+130+10+10=170;

console.log(oContainer.offsetLeft);

console.log(aBoxes[0].offsetLeft);

console.log(aBoxes[1].offsetLeft);输出结果为:

offsetWidth与offsetLeft

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		*{
			margin: 0;
			padding: 0;
		}
		body{
			//position: relative;
			margin:10px;
			padding: 10px;
			border: 5px solid black;
		}
		#container{
			position: relative;
			left: 100px;
			margin: 10px;
			padding: 10px;
			border: 5px solid #ccc;
			background: red;
			width: 300px;
			height: 300px;
			//overflow: hidden;
		}
		.box{
			position: relative;
			float: left;
			margin: 10px;
			padding: 10px;
			border: 5px solid black;
			background: orange;
			width: 100px;
			height: 100px;
		}
		.content{
			margin: 10px;
			padding: 10px;
			border: 5px solid black;
			background: yellow;
			width: 50px;
			height: 50px;
		}
	</style>
</head>
<body>
	<div id="container">            
		<div class="box">
                      <div class="content"></div>
		</div>
		<div class="box">
			<div class="content"></div>
		</div>
	</div>
 <script type="text/javascript">
 	var oContainer=document.getElementById("container");
 	var aBoxes=getElementsByClassName(oContainer,"box");
 	    
     console.log("container.offsetWidth="+oContainer.offsetWidth);
     console.log("box.offsetWidth="+aBoxes[0].offsetWidth);
     //console.log(aBoxes[1].firstElementChild.offsetWidth);
    
    //console.log(document.body.offsetLeft);
    console.log("container.offsetLeft="+oContainer.offsetLeft);
    console.log("box1.offsetLeft="+aBoxes[0].offsetLeft);
    console.log("box2.offsetLeft="+aBoxes[1].offsetLeft);
    console.log("content.offsetLeft="+aBoxes[1].firstElementChild.offsetLeft);
    // alert(document.body.offsetLeft);
    // alert(oContainer.offsetLeft);
    // alert(aBoxes[0].offsetLeft);
    // alert(aBoxes[1].offsetLeft);
    // alert(aBoxes[1].firstElementChild.offsetLeft);

 	function getElementsByClassName(parent,className){

 		var allChildren=parent.getElementsByTagName("*");
 		var arr=[];
 		for(var i=0;i<allChildren.length;i++){
 			if (allChildren[i].className==className) {
 				arr.push(allChildren[i]); 				
 			}
 		} 		
 		return arr;	 		
 	}
 </script>
	
</body>
</html>

Jetbrains全家桶1年46,售后保障稳定

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/198382.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • Iptables小总结

    Iptables小总结

  • 语义分割总结_细粒度语义分割

    语义分割总结_细粒度语义分割图像分割算法总结1.评价指标:普通指标:PixelAccuracy(PA,像素精度):标记正确的像素点占所有像素点的比例。混淆矩阵中=\(\frac{{\rm{对角线}}}{总和}\)Mea

  • 使用aspose把各种文件转换成pdf

    使用aspose把各种文件转换成pdfpackagecom.fh.util;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.InputStream;importorg.apache.pdfbox.pdmodel.PD…

  • 谈谈我对服务熔断、服务降级的理解

    谈谈我对服务熔断、服务降级的理解伴随着微服务架构被宣传得如火如荼,一些概念也被推到了我们面前(管你接受不接受),其实大多数概念以前就有,但很少被提的这么频繁(现在好像不提及都不好意思交流了)。想起有人总结的一句话,微服务架构的特点就是:“一解释就懂,一问就不知,一讨论就吵架”。其实对老外的总结能力一直特别崇拜,KevinKelly、MartinFowler、WernerVogels……,都是著名的“

  • js语法(1)_css语法

    js语法(1)_css语法js自动插入分号规则a.什么时候需要写分号什么时候不能写分号要有换行符,且下一个符号是不符合语法的,那么就尝试插入分号。有换行符,且语法中规定此处不能有换行符,那么就自动插入分号。源代码结束处,不能形成完整的脚本或者模块结构,那么就自动插入分号。noLineTerminatorhere规则表示它所在的结构中的这一位置不能插入换行符。带有标签的continue语句不能在continue后插入换行带标签的break语句不能在break后插入换行return后不能插入换行..

    2022年10月21日
  • Could not download kotlin-reflect.jar 完美解决

    Could not download kotlin-reflect.jar 完美解决

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号