JavaScript CSSStyleDeclaration 對象
getPropertyPriority()方法返回給定CSS屬性是否設置了“!important”優(yōu)先級。。
如果返回 "important" 則表明設置了優(yōu)先級,否則沒有。
object.getPropertyPriority(property)
var declaration = document.styleSheets[0].rules[0].style; var isImportant = declaration.getPropertyPriority('color'); document.getElementById("result").innerHTML = isImportant;測試看看?/?
所有瀏覽器完全支持getPropertyPriority()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
getPropertyPriority() | 是 | 是 | 是 | 是 | 是 |
參數(shù) | 描述 |
---|---|
property | 一個字符串,表示要檢查的屬性的名稱 |
返回值: | 表示優(yōu)先級的字符串,如果不存在則為空字符串 |
---|---|
DOM版本: | CSS對象模型 |