CSSStyleDeclaration getPropertyPriority() 方法

 JavaScript CSSStyleDeclaration  对象

getPropertyPriority()方法返回给定CSS属性是否设置了“!important”优先级。。

如果返回 "important" 则表明设置了优先级,否则没有。

语法:

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

浏览器兼容性

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

Method
getPropertyPriority()

参数值

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

技术细节

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

 JavaScript CSSStyleDeclaration  对象