前端js元素style的样式操作

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
div{
width: 300px;
height: 300px;
text-align: center;
background-color: yellow;
line-height: 150px;
margin: 60px auto;
font-size: 40px;
}
</style>
</head>
<body>
<div>哈哈哈哈哈哈哈哈中午吃啥</div>


</body>
</html>
<script type="text/javascript">
var div=document.querySelector("div");
//我们一般通过标签.style.属性值=值;进行赋值操作
//那我们该如何取值呢
var a=div.style.width;
//这样取不可行
//此操作正能对行间引用的css样式起作用 本质还是对象的.属性
//对于外部引用的css样式或者head引用的css无法取出css样式的值

console.log(a);
//这是正确的去css样式值的方式
//getComputedStyle(获取想要的标签样式)
var obj=getComputedStyle(div);
console.log(obj);
console.log(obj.width);
console.log(obj.height);
console.log(obj["font-size"]);
//取整操作
var a="1782px";
console.log(parseInt(a));
var a1="哈哈哈1782px";
console.log(parseInt(a1));
var a2="1782哈哈哈px";
console.log(parseInt(a2));
var b=89.6767;
var c=parseInt(b);
console.log(c);
//去小数操作
a=10;
console.log(parseFloat(a));
a="241.31哈哈";
console.log(parseFloat(a));
</script>

运行结果:


前端js元素style的样式操作
http://ultracode.cn/2020/11/19/JS/前端js元素style的样式操作/
作者
Win
发布于
2020年11月19日
许可协议