HTMLAreaElement: hash 属性

基线 广泛可用

此功能已得到良好建立,并在许多设备和浏览器版本上运行。 它从以下时间开始在所有浏览器中可用 2015 年 7 月.

HTMLAreaElement.hash 属性返回一个包含 '#' 和 URL 片段标识符的字符串。

片段未百分比编码。 如果 URL 没有片段标识符,则此属性包含一个空字符串 ""

一个字符串。

示例

给定此 HTML

html
<map name="infographic">
  <area
    id="mdn-circle"
    shape="circle"
    coords="130,136,60"
    href="https://mdn.org.cn/#ExampleSection"
    alt="MDN" />
</map>

<img
  usemap="#infographic"
  src="/media/examples/mdn-info.png"
  alt="MDN infographic" />

您可以像这样获取区域链接的哈希值

js
const area = document.getElementById("mdn-circle");
area.hash; // '#ExampleSection'

规范

规范
HTML 标准
# dom-hyperlink-hash-dev

浏览器兼容性

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

另请参阅