Module  jdk.xml.dom
软件包  org.w3c.dom.css

Interface CSSValueList

  • All Superinterfaces:
    CSSValue


    public interface CSSValueList
    extends CSSValue
    CSSValueList接口提供了CSS值的有序集合的抽象。

    一些属性允许在其语法中有一个空列表。 在这种情况下,这些属性将使用none标识符。 因此,空列表表示该属性的值为none

    CSSValueList中的项目可以通过整数索引访问,从0开始。

    另见Document Object Model (DOM) Level 2 Style Specification

    从以下版本开始:
    1.4,DOM Level 2
    • 方法详细信息

      • getLength

        int getLength​()
        列表中的数量为CSSValues 指数的有效值范围为0length-1含)。
      • item

        CSSValue item​(int index)
        用于通过序数索引检索CSSValue 此集合中的顺序表示CSS样式属性中值的顺序。 如果index大于或等于列表中的值的数量,则返回null
        参数
        index - 索引到集合。
        结果
        CSSValueindex位置在 CSSValueList ,或 null如果这不是有效的索引。