Notification.body - Web API 接口参考 编辑

 Notification 的只读属性body返回了构造函数Notification实例化时,options所使用的body值。

Note: 此特性在 Web Worker 中可用。

语法

var body = Notification.body;

DOMString.

示例

在 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);
}

规范

SpecificationStatusComment
Notifications API
body
Living StandardLiving 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!
FeatureChromeEdgeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support5 webkit (see notes)
22
(Yes)4.0 moz (see notes)
22
未实现256 (see notes)
Available in workers??41.0 (41.0)???
FeatureAndroidAndroid WebviewEdgeFirefox Mobile (Gecko)Firefox OSIE MobileOpera MobileSafari MobileChrome 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:47 次

字数:5181

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文