通知:title 属性
注意:此功能在Web Workers中可用。
title
是Notification
接口的只读属性,表示通知的标题,与Notification()
构造函数的title
参数中指定的标题相同。
值
字符串。
示例
js
function spawnNotification(theBody, theIcon, theTitle) {
const options = {
body: theBody,
icon: theIcon,
};
const n = new Notification(theTitle, options);
console.log(n.title);
}
规范
规范 |
---|
通知 API 标准 # dom-notification-title |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。