Notification:lang 属性

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

安全上下文: 此项功能仅在一些支持的浏览器安全上下文(HTTPS)中可用。

备注: 此特性在 Web Worker 中可用。

Notification 接口的 lang 只读属性指示通知中使用的语言,在 Notification() 构造函数的 lang 选项中指定。

语言本身是根据 RFC 5646: 语言识别标签(也被称为 BCP47)使用表示语言标签的字符串指定的。请参阅 Sitepoint ISO 2 字母语言代码页面以获取简单参考。

一个指定语言标签的字符串。

示例

以下代码段会触发一条通知;首先创建一个简单的 options 对象,然后使用 Notification() 构造函数触发通知。

js
const options = {
  body: "你提交的代码收到了 3 条新的审阅意见。",
  lang: "zh-Hans-CN",
};

const n = new Notification("新的评论活动", options);

console.log(n.lang); // "zh-Hans-CN"

规范

Specification
Notifications API
# dom-notification-lang

浏览器兼容性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
lang

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
No support
No support
See implementation notes.

参见