HTMLCollection: length-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die HTMLCollection.length-Eigenschaft gibt die Anzahl der Elemente in einer HTMLCollection zurück.

Wert

Ein ganzzahliger Wert, der die Anzahl der Elemente in einer HTMLCollection darstellt.

Beispiele

Die length-Eigenschaft ist oft nützlich in der DOM-Programmierung. Sie wird oft verwendet, um die Länge einer Liste zu testen, um zu prüfen, ob sie überhaupt existiert. Sie wird auch häufig als Iterator in einer for-Schleife verwendet, wie in diesem Beispiel.

js
// All the elements with the class ".test" in the document
const items = document.getElementsByClassName("test");

// For each test item in the list,
// append the entire element as a string of HTML
let gross = "";
for (let i = 0; i < items.length; i++) {
  gross += items[i].innerHTML;
}

// gross is now all the HTML for the test elements

Spezifikationen

Specification
DOM
# ref-for-dom-htmlcollection-length①

Browser-Kompatibilität

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
length

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support