Area hostname 属性
Area 对象的 hostname 属性可设置或返回 <area> 元素 href 属性值的主机名部分
语法
areaObject.hostname= "hostname"
浏览器支持
所有主要浏览器都支持 hostname 属性
范例
返回图像映射中 "Venus" 区域的主机名
<img src="/static/i/html/planets.gif" width="145" height="126" usemap="#planetmap"> <map name="planetmap"> <area id="venus" shape="circle" coords="124,58,8" alt="Venus" href="/static/media/html/venus.html"> </map> <p>Venus 区域的主机名称: <script> document.write(document.getElementById('venus').hostname); </script> </p>