Document: documentElement-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 documentElement schreibgeschützte Eigenschaft des Document-Interfaces gibt das Element zurück, das das Wurzelelement des Dokuments ist (zum Beispiel das <html>-Element für HTML-Dokumente).

Wert

Ein Element-Objekt.

Beispiele

js
const rootElement = document.documentElement;
const firstTier = rootElement.childNodes;
// firstTier is a NodeList of the direct children of the root element
// such as <head> and <body>

for (const child of firstTier) {
  // do something with each direct child of the root element
}

Anmerkungen

Für jedes nicht-leere HTML-Dokument wird documentElement immer ein <html>-Element sein. Für jedes nicht-leere XML-Dokument ist documentElement immer das Element, das das Wurzelelement des Dokuments ist.

Spezifikationen

Specification
DOM Standard
# ref-for-dom-document-documentelement①

Browser-Kompatibilität

BCD tables only load in the browser