通知:timestamp 属性
注意:此功能在Web Workers中可用。
timestamp
是Notification
接口的只读属性,它返回一个数字,该数字在Notification()
构造函数的timestamp
选项中指定。
通知的时间戳可以表示创建通知的事件发生的时间(以 1970 年 1 月 1 日 00:00:00 UTC 之后的毫秒数表示),也可以是您希望与通知关联的任意时间戳。例如,未来会议的时间戳可以设置为将来,而错过消息的时间戳可以设置为过去。
值
表示时间戳的数字,以毫秒为单位的Unix 时间。
示例
以下代码段会触发通知;创建一个简单的options
对象,然后使用Notification()
构造函数触发通知。
js
const dts = Math.floor(Date.now());
const options = {
body: "Your code submission has received 3 new review comments.",
timestamp: dts,
};
const n = new Notification("New review activity", options);
console.log(n.timestamp); // Logs the timestamp
规范
规范 |
---|
通知 API 标准 # dom-notification-timestamp |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。