Notification:dir 属性

Limited availability

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

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

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

Notification 接口的 dir 只读属性指示通知的文本方向,此文本方向在 Notification() 构造函数的 dir 选项中指定。

一个表示文本方向的字符串。可能的取值为:

auto

继承浏览器的语言设置里指定的方向(默认值)。

ltr

从左到右。

rtl

从右到左。

备注: 大多数浏览器似乎都忽略了明确的 ltr 和 rtl 设置,而是直接使用浏览器的通用设置。

示例

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

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

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

console.log(n.dir); // "rtl"

规范

Specification
Notifications API Standard
# dom-notification-dir

浏览器兼容性

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
dir

Legend

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

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

参见