返回颜色属性是否设置了 "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 对象模型 |
---|---|
返回值: | 一个字符串,表示优先级,如果不存在则为空字符串 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!