aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/images/index.html
blob: 15835ddf89cebe4ed92e9f5d32d75cbf65808ff7 (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
---
title: document.images
slug: Web/API/Document/images
tags:
  - DOM
  - Document
  - Gecko
  - Gecko DOM Reference
translation_of: Web/API/Document/images
---
<div>
 {{ApiRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p><code>document.images</code> は、現在の HTML 文書の {{domxref("Image")}} のコレクションを返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var <var>htmlCollection</var> = document.images;</pre>
<h2 id="Example" name="Example"></h2>
<p>特定の src 属性値を持つ img 要素が文書中に存在する場合にのみ何らかの処理を行う例を以下に示します。</p>
<pre class="brush:js">var ilist = document.images;

for(var i = 0; i &lt; ilist.length; i++) {
    if(ilist[i].src == "banner.gif") {
        // bunner.gif が存在した場合の処理
    }
}</pre>
<h2 id="Properties" name="Properties">プロパティ</h2>
<dl>
 <dt>
  <code>document.images.length</code></dt>
 <dd>
  文書中の画像の数を返す</dd>
</dl>
<h2 id="Notes" name="Notes">注記</h2>
<p><code>document.images</code> は DOM HTML の一部であり、HTML 文書に於いてのみ動作します。</p>
<h2 id="Specification" name="Specification">仕様書</h2>
<ul>
 <li><a href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-90379117">DOM Level 2 HTML: HTMLDocument.images</a></li>
</ul>