-
- All Superinterfaces:
-
AbstractView
public interface ViewCSS extends AbstractView
此接口表示CSS视图。getComputedStyle
方法提供对元素的计算值的只读访问。期望的是,可以通过在
ViewCSS
接口的实例上使用绑定专用的转换方法获得AbstractView
接口的实例。由于计算出的风格是与一个
Element
节点,如果这个元素从文档中删除,相关CSSStyleDeclaration
和CSSValue
与此相关的声明不再有效。- 从以下版本开始:
- 1.4,DOM Level 2
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 CSSStyleDeclaration
getComputedStyle(Element elt, String pseudoElt)
该方法用于获取在[ CSS2 ]中定义的计算风格。-
Methods inherited from interface org.w3c.dom.views.AbstractView
getDocument
-
-
-
-
方法详细信息
-
getComputedStyle
CSSStyleDeclaration getComputedStyle(Element elt, String pseudoElt)
该方法用于获取在[ CSS2 ]中定义的计算样式。- 参数
-
elt
- 要计算样式的元素。 此参数不能为空。 -
pseudoElt
- 伪元素或null
如果没有)。 - 结果
-
计算风格。
CSSStyleDeclaration
是只读的,只包含绝对值。
-
-