Notification:dir 属性
注意:此功能在Web 工作线程中可用。
dir
是 Notification
接口的只读属性,它指示通知的文本方向,如 Notification()
构造函数的 dir
选项中指定的那样。
值
示例
以下代码片段触发了一个通知;创建了一个简单的 options
对象,然后使用 Notification()
构造函数触发通知。
js
const options = {
body: "Your code submission has received 3 new review comments.",
dir: "rtl",
};
const n = new Notification("New review activity", options);
console.log(n.dir); // "rtl"
规范
规范 |
---|
通知 API 标准 # dom-notification-dir |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。