Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


Availability


DOM Level 2 CSS

Inherits from/Overrides


CSSValue CSSValueList


Properties



readonly unsigned long length

The number
of CSSValue objects in this array.


Methods


item( )

Returns the CSSValue object at the specified position in the array,
or null if the specified position is negative or
if it is greater than or equal to length.


Description


This interface represents an array of CSSValue objects and is itself
a type of CSSValue. The item( ) method can be used
to retrieve the CSSValue object at a specified position, but in
JavaScript, it is easier to simply index the array using standard
square-bracket notation.

The order of CSSValue objects in a CSSValueList array is the order in
which they appear in the CSS style declaration. Some CSS attributes
whose value is a CSSValueList may also have the value
none. This special value translates into a
CSSValueList object with a length of 0.

/ 844