<Dom-样式计算>

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
	<style type="text/css">
		#app {
			font-size: 40px;
			width: 200px;
			height: 200px;
			background-color: skyblue;
		}
	</style>
</head>
<body>
	<div id="app" style="font-size: 50px; background-color: pink">
		heslay
	</div>
	<script type="text/javascript">
		var app1=document.getElementById('app');
		//获取样式
		//通过style属性只能获取行内式样式
		//不能获取内嵌式或者外链式的样式
		console.log(app1.style.fontSize);//50px
		console.log(app1.style.width);//获取不到内嵌式中的200px
	//通过window.getComputedStyle方法获取计算后最终的样式
		//如果浏览器支持,可以省略window
		var result=window.getComputedStyle(app1);
		console.log(result);
		//使用getPropertyValue获取某个具体值
		 //使用正确书写
		console.log(result.getPropertyValue('width'));
		console.log(result.getPropertyValue('font-size'));
		//也可以使用result['']获取
		console.log(result['background-color']);

	//较低版本ie浏览器下,获取样式用元素的currentStyle属性
		var result1=app1.currentStyle;
		// alert(result1.fontSize);
	</script>
</body>
</html>```

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值