在对网页进行调试的过程中,经常会用到js来获取元素的CSS样式,方法有很多很多,现在仅把我经常用的方法总结如下:
1. obj.style:这个方法只能JS只能获取写在html标签中的写在style属性中的值(style=”…”),而无法获取定义在
代码如下:
1
2
3
4
JS获取CSS属性值5
6
7 .ss{color:#cdcdcd;}
8
9
10
11
12
13
JS获取CSS属性值
14
15
16 alert(document.getElementById(“css88″).style.width);//200px
17 alert(document.getElementById(“css88″).style.color);//空白
18
19
20