Notification: maxActions 静态属性
注意:此功能在Web 工作线程中可用。
maxActions
是 Notification
接口的只读静态属性,它返回设备和用户代理支持的最大操作数。实际上,这是用户代理将尊重的 Notification.actions
数组中元素的最大数量。
值
一个整数,指示用户代理和设备可以向用户呈现的最大通知操作数。
示例
以下代码段记录了支持的最大操作数。
js
const maxActions = Notification.maxActions;
console.log(
`This device can display at most ${maxActions} actions on each notification.`,
);
规范
规范 |
---|
通知 API 标准 # dom-notification-maxactions |
浏览器兼容性
BCD 表仅在启用了 JavaScript 的浏览器中加载。