HTMLAreaElement: hash 属性
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 的浏览器中加载。
另请参阅
- 它所属的
HTMLAreaElement
接口。