元素:ariaOrientation 属性

基线 2023

新可用

2023 年 10 月起,此功能可在最新的设备和浏览器版本中使用。此功能可能在较旧的设备或浏览器中无法使用。

Element 接口的 **ariaOrientation** 属性反映了 Element 接口的 aria-orientation 属性的值,该属性指示元素的方向是水平、垂直还是未知/模糊。

一个字符串,包含以下值之一:

"horizontal"

元素为水平方向。

"vertical"

元素为垂直方向。

"undefined"

元素的方向未知。

示例

在这个例子中,ID 为 handle_zoomSlider 的元素上的 aria-orientation 属性被设置为 "vertical"。使用 ariaOrientation,我们将该值更新为 "horizontal"。

html
<div
  id="handle_zoomSlider"
  role="slider"
  aria-orientation="vertical"
  aria-valuemin="0"
  aria-valuemax="17"
  aria-valuenow="14"
  tabindex="0">
  <span>11</span>
</div>
js
let el = document.getElementById("handle_zoomSlider");
console.log(el.ariaOrientation); // "vertical"
el.ariaOrientation = "horizontal";
console.log(el.ariaOrientation); // "horizontal"

规范

规范
无障碍富互联网应用 (WAI-ARIA)
# dom-ariamixin-ariaorientation

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。