js原生获取css属性
Posted daV_chen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js原生获取css属性相关的知识,希望对你有一定的参考价值。
原文参考http://blog.csdn.net/lzding/article/details/46317777
1.写在dom上的属性,内联样式
<div id="box" style="background-color:#ccc;margin-top:100px;"></div>
var oBox = document.getElementById(‘box‘)
console.log(oBox.style.width)
1)对于复合属性(如background),假设行间设置了样式:background-color:#333,不能通过 element.style.background 来获取(见上面例子)
2)css属性使用驼峰法,如 backgroundColor、marginTop等。
2.写在css中的属性,非内联样式(chrome)
var oBox = document.getElementById(‘box‘);
var a = getComputedStyle(oBox, null)[‘width‘]; // 100px
1)对于复合属性:使用 getPropertyValue 获取属性值时,不能使用驼峰写法,如:例子中的 getpropertyValue(‘backgroundColor‘) 无法正确获得值,而必须写成 background-color
2)另外,以下写法也正确:getComputedStyle(oBox, null)[‘backgroundColor‘]、getComputedStyle(oBox, null)[‘background-color‘], 以及 getComputedStyle(oBox, null).backgroundColor 等
以上是关于js原生获取css属性的主要内容,如果未能解决你的问题,请参考以下文章
怎么用js获取到css3属性的值 比如获取transform的值