--- title: Document.images slug: Web/API/Document/images translation_of: Web/API/Document/images ---
document.images
는 현재 HTML document 내부의 images collection을 반환합니다.
var htmlCollection = document.images;
var ilist = document.images; for(var i = 0; i < ilist.length; i++) { if(ilist[i].src == "banner.gif") { // found the banner } }
document.images.length
– 페이지의 이미지 갯수를 반환하는 속성
document.images
는 DOM HTML의 part이며, HTML documents 에서만 지원된다.
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG', '#dom-document-images', 'Document.images')}} | {{ Spec2('HTML WHATWG') }} | |
{{SpecName('DOM2 HTML', 'html.html#ID-90379117', 'Document.images')}} | {{ Spec2('DOM2 Events') }} | Initial definition. |