目录

CSSStyleDeclaration getPropertyPriority() 方法

❮ CSSStyleDeclaration 对象

示例

返回颜色属性是否设置了 "important!" 优先级:

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

描述

getPropertyPriority() 方法返回指定的 CSS 属性是否设置了 "important!" 优先级。

如果此方法返回"important",则设置重要限定符。

如果此方法返回空字符串,则未设置 important 限定符。


浏览器支持

Method
getPropertyPriority() Yes 9.0 Yes Yes Yes

语法

object.getPropertyPriority( propertyname)

参数值

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

技术细节

DOM 版本: CSS 对象模型
返回值: 一个字符串,表示优先级,如果不存在则为空字符串

❮ CSSStyleDeclaration 对象