Notification: title-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 title schreibgeschützte Eigenschaft der Notification-Schnittstelle gibt den Titel der Benachrichtigung an, wie im title-Parameter 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.title);
}

Spezifikationen

Specification
Notifications API Standard
# dom-notification-title

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch