images

Обновлено: 27.03.2023

Визначення та використання

Властивість imagesповертає набір усіх елементів <img> у документі.

Властивість imagesповертає HTMLCollection .

Властивість imagesдоступна лише для читання.

Примітка

Властивість imagesне повертає елементи <input> із type="image".

приклад

Кількість елементів <img> у документі:

document.images.length;

Перейдіть до всіх елементів <img> і виведіть URL-адресу (src) кожного:

const myImages = document.images;
let text = "";
for (let i = 0; i < myImages.length; i++) {
  text += myImages[i].src + "<br>";
}

HTMLCollection

HTMLCollection — це колекція (список) елементів HTML у вигляді масиву .

До елементів колекції можна отримати доступ за індексом (починається з 0).

Властивість length повертає кількість елементів у колекції.

Синтаксис

document.images

Властивості

PropertyDescription
lengthThe number of <img> elements in the collection.

методи

MethodDescription
[index]Returns the element with the specified index (starts at 0).
Returns null if the index is out of range.
item(index)Returns the element with the specified index (starts at 0).
Returns null if the index is out of range.
namedItem(id)Returns the element with the specified id.
Returns null if the id does not exist.

Повернене значення

Типопис
Об'єктОб’єкт HTMLCollection.
Усі елементи <img> у документі.
Елементи сортуються так, як вони відображаються в документі.

Підтримка браузера

document.images

Посмотреть совместимость на Can I use?

document.images