第1章 第518节 dom css getPropertyPriority

推荐给朋友

CSSStyleDeclaration getPropertyPriority() 方法

实例

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

var declaration = document.styleSheets[0].cssRules[0].style;
var priority = declaration.getPropertyPriority("color");
alert(priority);

尝试一下

定义和使用

getPropertyPriority() 方法返回指定的 CSS 属性是否设置了 "important!" 优先级。如果返回 "important" 则表明设置了优先级,否则没有。

浏览器支持

方法 Chrome Edge Firefox Safari Opera
getPropertyPriority() Yes 9.0 Yes Yes Yes

语法

object.getPropertyPriority(propertyname)

属性值

参数 描述
propertyname 必需。一个字符串,表示要检测的属性名。

技术细节

DOM 版本: CSS Object Model
返回值: 字符串, 表示设置了优先级,如果为空则表示没有设置优先级。