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 返回当前文档中所有 image 元素的集合.

语法

var htmlCollection = document.images;

例子

var ilist = document.images;
for(var i = 0; i < ilist.length; i++) {
    if(ilist[i].src == "banner.gif") {
         // 发现了banner图片
    }
}

备注

document.images.length 属性返回了当前页面中所有图片元素的数量.

document.images 属于HTML DOM标准, 仅能在HTML文档中使用.

规范

DOM Level 2 HTML: HTMLDocument.images

 

文档标签和贡献者

 此页面的贡献者: teoli, arunpandianp, ziyunfei
 最后编辑者: arunpandianp,