Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. HTMLAreaElement
  4. alt

HTMLAreaElement: alt property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨July 2015⁩.

Thealt property of theHTMLAreaElement interface specifies the text of the hyperlink, defining the textual label for an image map's link. It reflects the<area> element'salt attribute.

Thealt value must be text that, when presented with thealt text of the other<area> hyperlinks within the same<map>, along with thealt text of the<img> itself, provides the user with the same kind of choice as the hyperlink would when used without its text but with its shape applied to the image.

If the<area> is a link (contains anhref property), thealt property value should be a non-empty string giving the label for the link that would be appropriate if the image were unavailable. Thealt attribute for a link<area> can only be empty if there is another<area> element in the same<map> that points to the same resource and has a non-blankalt attribute.

Value

A string.

Examples

js
const areaElement = document.getElementById("imageArea");console.log(areaElement.alt);areaElement.alt = "A much better link description";

Specifications

Specification
HTML
# dom-area-alt

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp