目录

CSSStyleDeclaration getPropertyValue() 方法

❮ CSSStyleDeclaration 对象

示例

返回颜色属性的值:

var declaration = document.styleSheets[0].cssRules[0].style;
var propvalue = declaration.getPropertyValue("color");
alert(propvalue);
亲自试一试 »

描述

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


浏览器支持

Method
getPropertyValue() Yes 9.0 Yes Yes Yes

语法

object.getPropertyValue( propertyname)

参数值

Parameter Description
propertyname Required. A String representing the name of the property to check

技术细节

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