<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.one{
font-size: 15px;
height: 20px;
width: 150px;
background: green;
}
</style>
</head>
<body>
<div class="one" style="color: red">起个名字真费劲</div>
</body>
</html>
- 查看属性
var one=document.querySelect(".one")
① 获取属性值(可以获取自定义属性的值):
one.getAttribute("class")
可以得到字符串类型的class值"one"
②获取class的值.
one.classList(得到一个数组)
one.className(得到字符串one)
③dom.style.xxx
dom.style.color
dom.style.fontSize(仅限内联样式,font-size写成fontSize)
④获取外部样式的值
getComputedStyle(dom).color
注:ComputedStyle是所有样式叠加后的样式