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