blob: 58d57fcbac469c952b06e1cc440c495d9641aeef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
---
title: CSSStyleDeclaration.item()
slug: Web/API/CSSStyleDeclaration/item
translation_of: Web/API/CSSStyleDeclaration/item
---
<p>{{ APIRef("CSSOM") }}</p>
<p id="Summary"><span class="seoSummary"><code>CSSStyleDeclaration.item()</code> 通过下标从 {{domxref('CSSStyleDeclaration')}} 返回一个 CSS 属性值</span>。只要传入参数这个方法就不会抛出异常; 当传入的下标越界时会返回空字符串,当未传入参数时会抛出一个 <code>TypeError</code> 。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">var <em>propertyName</em> = <em>style</em>.item(<em>index</em>);
</pre>
<h3 id="参数">参数</h3>
<ul>
<li><em><code>index</code></em> 是需要查找节点的索引,索引下标从零开始。</li>
</ul>
<h3 id="Return_value">Return value</h3>
<ul>
<li><em><code>propertyName</code></em> 是一个 {{domxref('DOMString')}} ,是在特定索引位置下的属性的名称。</li>
</ul>
<p>使用以下的 javascript 语法可以通过索引从 style 的节点列表中获取对应值:</p>
<pre class="syntaxbox">var propertyName = style[index];
</pre>
<h2 id="范例">范例</h2>
<pre class="brush: js">var style = document.getElementById('div1').style;
var propertyName = style.item(1); // or simply style[1] - returns the second style listed</pre>
<h2 id="规范">规范</h2>
<table>
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSSOM', '#dom-cssstyledeclaration-item', 'CSSStyleDeclaration.item()')}}</td>
<td>{{Spec2('CSSOM')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('DOM2 Style', 'css.html#CSS-CSSStyleDeclaration', 'CSSStyleDeclaration')}}</td>
<td>{{Spec2('DOM2 Style')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<p><strong>浏览器兼容性</strong></p>
{{Compat("api.CSSStyleDeclaration.item")}}
|