目录

CSSStyleDeclaration item() 方法

❮ CSSStyleDeclaration 对象

示例

从 "ex1" 元素的样式声明中返回第一个 CSS 属性名称:

var style = document.getElementById("ex1").style;
var propname = style.item(0);
alert(propname);
亲自试一试 »

描述

item() 方法按索引从 CSS 声明块返回 CSS 属性名称。

索引从 0 开始。


浏览器支持

Method
item() Yes 9.0 Yes Yes Yes

语法

style.item( index)

参数值

Parameter Description
index Required. A number representing the index of the CSS property

技术细节

DOM 版本: CSS 对象模型
返回值: 一个字符串,代表属性的名称

更多示例

示例

循环遍历所有元素的样式声明:

for (i = 0; i < elmnt.style.length; i++) {
  txt += elmnt.style.item(i)
}
亲自试一试 »

❮ CSSStyleDeclaration 对象