菜鸟看前端(js获取盒模型)

js获取盒模型

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			*{
				margin: 0;
				padding: 0;
			}
			#app{
				width: 100px;
				height: 100px;
				border: 5px solid black;
				margin: 10px;
				padding: 15px;
				background-color: #0088DD;
			}
		</style>
	</head>
	<body>
		<div id="app">
			
		</div>
	</body>
	<script type="text/javascript">
		let box = document.getElementById('app')
		// ie获取盒子宽度
		// let wIe = box.currentStyle.width
		// console.log(wIe)  // 100px
		// 非IE 获取盒子模型宽度
		let w = window.getComputedStyle(box,null).width  
		console.log(w) //100px 只是设定的宽度
		
		console.log('clientWidth' + app.clientWidth + 'px') // 宽度+左右padding
		console.log('clientHeight' + app.clientHeight + 'px') // 高度+上下padding
		console.log('offset')
		console.log('offsetWidth' + app.offsetWidth + 'px') // 宽度 + 左右padding + 左右边框
		console.log('offsetHeight' + app.offsetHeight + 'px') // 高度 + 上下padding + 上下边框
	</script>
</html>

在这里插入图片描述

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值