JS 获取CSS属性值
Posted wanglehui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 获取CSS属性值相关的知识,希望对你有一定的参考价值。
obj: 元素对象
attribute: 属性
返回值:该对象这个属性的值
function getDefaultStyle(obj,attribute){ // 返回最终样式函数,兼容IE和DOM,设置参数:元素对象、样式特性 return obj.currentStyle?obj.currentStyle[attribute]:document.defaultView.getComputedStyle(obj,false)[attribute]; }
完整链接:http://www.css88.com/archives/625
以上是关于JS 获取CSS属性值的主要内容,如果未能解决你的问题,请参考以下文章
JS使用getComputedStyle()方法获取CSS属性值