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

<img 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"
alt="Venus" />
</map>

<p>Venus 的协议:
<script type="text/javascript">
x=document.getElementById('venus');
document.write(x.protocol);
</script>
</p>

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