JavaScript CSSStyleDeclaration 對象
CSSStyleDeclaration item() 方法的作用是:從CSSStyleDeclaration返回CSS屬性名稱。
如果索引超出范圍,則返回一個(gè)空字符串。
索引從0開始。
object.item(index)
var style = document.getElementById('s1').style; var propertyName = style.item(1); // 返回列出的第二種樣式 document.getElementById("result").innerHTML = propertyName;測試看看?/?
所有瀏覽器都完全支持item()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
item() | 是 | 是 | 是 | 是 | 是 |
參數(shù) | 描述 |
---|---|
index | 一個(gè)數(shù)字,表示CSS屬性的索引。索引從零開始。 |
返回值: | 表示屬性名稱的字符串 |
---|---|
DOM版本: | CSS對象模型 |
遍歷所有元素的樣式聲明:
function myFunc() { var style = document.getElementById('s1').style; for (i = 0; i < style.length; i++) { propertyName += style.item(i) + "<br>"; } document.getElementById("result").innerHTML = propertyName; }測試看看?/?