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
Властивості
Property | Description |
length | The number of <img> elements in the collection. |
методи
Method | Description |
[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> у документі. Елементи сортуються так, як вони відображаються в документі. |