我们知道在JS里如果要操作CSS,那么最重要的就是获取样式,下面就给大家带来一篇JS获取样式最常见的几种方法,给大家作为参考。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> div{ color:yellow; } </style> </head> <body> <div style="width:100px;height:100px;background-color:red">This is div</div> </body> </html>
通过使用element.style属性来获取
<script> var div = document.getElementsByTagName("div")[0]; console.log(div.style.color); //"" console.log(div.style.backgroundColor); //red </script>
element.style属性只能获取行内样式,不能获取