HTMLMetaElement: content-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 HTMLMetaElement.content-Eigenschaft ruft das content-Attribut von Pragma-Direktiven und benannten <meta>-Daten in Verbindung mit HTMLMetaElement.name oder HTMLMetaElement.httpEquiv ab oder setzt dieses. Für weitere Informationen siehe das content-Attribut.

Wert

Ein String.

Beispiele

Inhalt eines Meta-Elements lesen

Im folgenden Beispiel wird ein <meta>-Element abgefragt, das ein name-Attribut mit dem Wert keywords enthält. Der content-Wert wird in die Konsole geloggt, um die Schlüsselwörter des Dokuments anzuzeigen:

js
// given <meta name="keywords" content="documentation, HTML, web">
const meta = document.querySelector("meta[name='keywords']");
console.log(meta.content);
// "documentation, HTML, web"

Ein Meta-Element mit Inhalt erstellen

Das folgende Beispiel erstellt ein neues <meta>-Element mit einem name-Attribut, das auf description gesetzt ist. Das content-Attribut legt eine Beschreibung des Dokuments fest und wird dem Dokument <head> hinzugefügt:

js
const meta = document.createElement("meta");
meta.name = "description";
meta.content =
  "The <meta> element can be used to provide document metadata in terms of name-value pairs, with the name attribute giving the metadata name, and the content attribute giving the value.";
document.head.appendChild(meta);

Spezifikationen

Specification
HTML Standard
# dom-meta-content

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch