Document: head-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 head schreibgeschützte Eigenschaft der Document-Schnittstelle gibt das <head>-Element des aktuellen Dokuments zurück.

Wert

Beispiele

html
<!doctype html>
<head id="my-document-head">
  <title>Example: using document.head</title>
</head>

<script>
  const theHead = document.head;

  console.log(theHead.id); // "my-document-head";

  console.log(theHead === document.querySelector("head")); // true
</script>

Anmerkungen

document.head ist schreibgeschützt. Der Versuch, dieser Eigenschaft einen Wert zuzuweisen, schlägt stillschweigend fehl oder wirft im Strict Mode einen TypeError.

Spezifikationen

Specification
HTML Standard
# dom-document-head-dev

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch