Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. Element
  4. ariaCurrent

Element: ariaCurrent property

Baseline 2023
Newly available

Since ⁨October 2023⁩, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

TheariaCurrent property of theElement interface reflects the value of thearia-current attribute, which indicates the element that represents the current item within a container or set of related elements.

Value

A string with one of the following values:

"page"

Represents the current page within a set of pages.

"step"

Represents the current step within a process.

"location"

Represents the current location, for example the current page in a breadcrumbs hierarchy.

"date"

Represents the current date within a collection of dates.

"time"

Represents the current time within a set of times.

"true"

Represents the current item within a set.

"false"

Does not represent the current item within a set.

Examples

In this example a set of links are used for site navigation. Thearia-current attribute indicates the current page. The valuepage is incorporated into the screen reader announcement. UsingariaCurrent we can update that value.

html
<nav>  <ul>    <li><a href="/" aria-current="page">Home</a></li>    <li><a href="/">About</a></li>    <li><a href="/">Contact</a></li>  </ul></nav>
js
let el = document.getElementById("link-home");console.log(el.ariaCurrent); // "page"el.ariaCurrent = "tab";console.log(el.ariaCurrent); // "tab"

Specifications

Specification
Accessible Rich Internet Applications (WAI-ARIA)
# dom-ariamixin-ariacurrent

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp