Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.images

概要

document.images は、現在の HTML 文書の Image のコレクションを返します。

構文

var htmlCollection = document.images;

特定の src 属性値を持つ img 要素が文書中に存在する場合にのみ何らかの処理を行う例を以下に示します。

var ilist = document.images;

for(var i = 0; i < ilist.length; i++) {
    if(ilist[i].src == "banner.gif") {
        // bunner.gif が存在した場合の処理
    }
}

プロパティ

document.images.length
文書中の画像の数を返す

注記

document.images は DOM HTML の一部であり、HTML 文書に於いてのみ動作します。

仕様書

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, jsx, ethertank
 最終更新者: jsx,