JavaScript CSSStyleDeclaration 對象
parentRule屬性返回一個(gè)CSSRule對象,該對象表示一個(gè)CSS規(guī)則集(選擇器和聲明塊)。
styles.parentRule
var declaration = document.styleSheets[0].rules[0].style; var rule = declaration.parentRule; document.getElementById("result").innerHTML = rule.cssText;測試看看?/?
所有瀏覽器完全支持parentRule屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
parentRule | 是 | 是 | 是 | 是 | 是 |
返回值: | 包含此聲明塊的CSS規(guī)則 |
---|---|
DOM版本: | CSS對象模型 |