Notification.body - Web API 接口参考 编辑
Notification
的只读属性body返回了构造函数Notification
实例化时,options所使用的body值。
语法
var body = Notification.body;
值
示例
在 Emogotchi demo (see source code)中, 我们在激活一个桌面通知时,调用了spawnNotification()
函数—函数被传入了指定的参数 body、icon、title , 创建了一个必选对象传入Notification()
构造函数创建了一个实例.
function spawnNotification(theBody,theIcon,theTitle) {
var options = {
body: theBody,
icon: theIcon
}
var n = new Notification(theTitle,options);
}
规范
Specification | Status | Comment |
---|---|---|
Notifications API body | Living Standard | Living standard |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 5 webkit (see notes) 22 | (Yes) | 4.0 moz (see notes) 22 | 未实现 | 25 | 6 (see notes) |
Available in workers | ? | ? | 41.0 (41.0) | ? | ? | ? |
Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|---|
Basic support | ? | (Yes) | (Yes) | 4.0 moz (see notes) 22 | 1.0.1 moz (see notes) 1.2 | 未实现 | ? | 未实现 | (Yes) |
Available in workers | ? | ? | ? | 41.0 (41.0) | ? | ? | ? | ? | ? |
Firefox OS 备忘
Chrome 备忘
Safari 备忘
相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论