值
一个包含 元素的 HTMLAreaElement 对象。HTMLCollection
示例
html
<map id="image-map">
<area shape="circle" coords="50,50,35" alt="left arrow" />
<area shape="circle" coords="150,50,35" alt="right arrow" />
</map>
<img
usemap="#image-map"
src="left-right-arrow.png"
alt="left right arrow image" />
<output></output>
js
const mapElement = document.getElementById("image-map");
const outputElement = document.querySelector("output");
for (const area of mapElement.areas) {
area.addEventListener("click", (event) => {
outputElement.textContent = `You clicked on the ${area.alt} area.\n\n`;
});
}
结果
规范
| 规范 |
|---|
| HTML # dom-map-areas-dev |
浏览器兼容性
加载中…