blob: 03ee6eb75d54b92caffce255a46e393d347727a0 (
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
64
65
|
---
title: document.images
slug: Web/API/Document/images
translation_of: Web/API/Document/images
---
<div>{{APIRef("DOM")}}</div>
<p>{{domxref("Document")}} 接口的只读属性images返回当前文档中所有 <a href="/zh-cn/DOM/Image" title="zh-cn/DOM/Image">image</a> 元素的集合.</p>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox"><em>var imageCollection</em> = document.images;</pre>
<h3 id="值">值</h3>
<p>一个 {{domxref("HTMLCollection")}},提供了包含在该文档中的所有images元素实时的列表。 集合中的每条代表了一个单image元素的{{domxref("HTMLImageElement")}}</p>
<h2 id="备注">备注</h2>
<p>你可以在返回的结果中使用JavaScript 数组符号('[]',译注),或者{{domxref("HTMLCollection.item", "item()")}} 方法去获取集合中的每个元素。下面方法是等价的:</p>
<pre class="brush: js">firstImage = imageCollection.item(0);
firstImage = imageCollection[0];</pre>
<h2 id="Example" name="Example">例子</h2>
<p>该例是一次通过遍历图片列表找到名称为<code>"banner.gif"</code>的图片。</p>
<pre class="brush: js">var ilist = document.images;
for(var i = 0; i < ilist.length; i++) {
if(ilist[i].src == "banner.gif") {
// 发现了banner图片
}
}</pre>
<h2 id="Specifications" name="Specifications">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-document-images', 'Document.images')}}</td>
<td>{{ Spec2('HTML WHATWG') }}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('DOM2 HTML', 'html.html#ID-90379117', 'Document.images')}}</td>
<td>{{ Spec2('DOM2 Events') }}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Document.images")}}</p>
|