CSSStyleDeclaration getPropertyValue() 方法

 JavaScript CSSStyleDeclaration  对象

getPropertyValue() 方法返回指定的 CSS 属性的值。

语法:

object.getPropertyValue(property)
var declaration = document.styleSheets[0].rules[0].style;
var val = declaration.getPropertyValue('color');
document.getElementById("result").innerHTML = val;
测试看看‹/›

浏览器兼容性

所有浏览器完全支持getPropertyValue()方法:

Method
getPropertyValue()

参数值

参数描述
property一个字符串,表示要检查的属性的名称

技术细节

返回值:表示属性值的字符串
DOM版本:CSS对象模型

 JavaScript CSSStyleDeclaration  对象