通知:lang 属性
注意:此功能在Web 工作线程中可用。
Notification
接口的lang
只读属性指示通知中使用的语言,如Notification()
构造函数的lang
选项中所指定。
语言本身使用一个字符串来指定,该字符串表示根据RFC 5646:语言标识标签(也称为 BCP 47)的语言标签。有关简单参考,请参阅 Sitepoint 的ISO 2 字母语言代码页面。
值
一个字符串,指定语言标签。
示例
以下代码段触发通知;创建一个简单的options
对象,然后使用Notification()
构造函数触发通知。
js
const options = {
body: "Your code submission has received 3 new review comments.",
lang: "en-US",
};
const n = new Notification("New review activity", options);
console.log(n.lang); // "en-US"
规范
规范 |
---|
通知 API 标准 # dom-notification-lang |
浏览器兼容性
BCD 表仅在浏览器中加载