代码示例:(标识:hdom_document_links_2)
<html>
<body>

<img id="planets"
src="/static/demo/images/eg_planets.jpg" 
usemap="#planetmap" />

<map name="planetmap">
<area id="venus" shape="circle"
coords="180,139,14"
href ="/static/demo/html/venus.html"
target ="_blank"
alt="Venus" />
</map>
<br />

area 元素的 id 是:
<script type="text/javascript">
document.write(document.links[0].id)
</script>

</body>
</html>
运行结果: