HTML:標記語言
CSS:樣式語言
JavaScript:指令碼語言
Web API:程式設計介面
所有 Web 技術
學習 Web 開發
發現我們的工具
更好地瞭解 MDN
此特性不是基線特性,因為它在一些最廣泛使用的瀏覽器中不起作用。
安全上下文: 此功能僅在安全上下文(HTTPS)中可用,且支援此功能的瀏覽器數量有限。
注意:此功能在 Web Workers 中可用。
title 是 Notification 介面的一個只讀屬性,它指示通知的標題,該標題是在 Notification() 建構函式的 title 引數中指定的。
title
Notification
Notification()
字串。
function spawnNotification(theBody, theIcon, theTitle) { const options = { body: theBody, icon: theIcon, }; const n = new Notification(theTitle, options); console.log(n.title); }
載入中…