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

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

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

<p>Venus area 的 shape 属性是:
<script type="text/javascript">
x=document.getElementById("venus");
document.write(x.shape);
</script>
</p>

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