CSSStyleDeclaration.item()
method interface returns a CSS property name from a
CSSStyleDeclaration
by index
. This method doesn't throw exceptions as long as you provide arguments; the empty string is returned if the index is out of range and a
TypeError
is thrown if no argument is provided.
var propertyName = style.item(index);
index
is the index of the node to be fetched. The index is zero-based.
propertyName
是
DOMString
that is the name of the CSS property at the specified index.
JavaScript has a special simpler syntax for obtaining an item from a NodeList by index:
var propertyName = style[index];
var style = document.getElementById('div1').style;
var propertyName = style.item(1); // or simply style[1] - returns the second style listed
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
item
|
Chrome 1 | Edge 12 | Firefox 1 | IE Yes | Opera Yes | Safari 6 | WebView Android 4.4 | Chrome Android 18 | Firefox Android 4 | Opera Android Yes | Safari iOS Yes | Samsung Internet Android 1.0 |
完整支持
CSSStyleDeclaration
AnimationEvent
CSS
CSSConditionRule
CSSGroupingRule
CSSKeyframeRule
CSSKeyframesRule
CSSMediaRule
CSSNamespaceRule
CSSPageRule
CSSRule
CSSRuleList
CSSStyleRule
CSSStyleSheet
CSSSupportsRule
CaretPosition
LinkStyle
MediaQueryList
MediaQueryListListener
Screen
StyleSheet
StyleSheetList
TransitionEvent