- 所有超级接口:
-
CSSValue
CSSValueList
接口提供了有序的CSS值集合的抽象。
某些属性允许其语法中包含空列表。在这种情况下,这些属性采用none
标识符。因此,空列表意味着属性具有值none
。
CSSValueList
中的项目可以通过整数索引访问,从0开始。
另请参阅文档对象模型(DOM)2级样式规范。
- 自从:
- 1.4, DOM 2级
-
Field Summary
Fields declared in interface org.w3c.dom.css.CSSValue
CSS_CUSTOM, CSS_INHERIT, CSS_PRIMITIVE_VALUE, CSS_VALUE_LIST
-
Method Summary
Methods declared in interface org.w3c.dom.css.CSSValue
getCssText, getCssValueType, setCssText
-
Method Details
-
getLength
int getLength()列表中CSSValues
的数量。索引的有效值范围是0
到length-1
(包括)。 -
item
通过序数索引检索CSSValue
。此集合中的顺序表示CSS样式属性中值的顺序。如果索引大于或等于列表中的值数,则返回null
。- 参数:
-
index
- 集合中的索引。 - 返回:
-
CSSValueList
中位置为index
的CSSValue
,如果该索引无效则返回null
。
-