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对象模型 |