Notification: body-Eigenschaft

Sicherer Kontext: Diese Funktion ist nur in sicheren Kontexten (HTTPS) in einigen oder allen unterstützenden Browsern verfügbar.

Hinweis: Dieses Feature ist verfügbar in Web Workers.

Die schreibgeschützte body-Eigenschaft des Notification-Interfaces gibt den Textkörper der Benachrichtigung an, wie in der body-Option des Notification()-Konstruktors angegeben.

Wert

Ein String.

Beispiele

js
function spawnNotification(theBody, theIcon, theTitle) {
  const options = {
    body: theBody,
    icon: theIcon,
  };
  const n = new Notification(theTitle, options);

  console.log(n.body);
}

Spezifikationen

Specification
Notifications API Standard
# dom-notification-body

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch