Area host 属性
Area 对象的 host 属性克设置或者返回 <area> 元素 href 属性值的 主机名:端口 部分
如果 URL 中端口部分没有指定,或者端口为 80(默认值),一些浏览器将不会显示端口部分
语法
areaObject.host= "hostname:port"
浏览器支持
所有主要浏览器都支持 host 属性
范例
返回 "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>金星区域的 hostname:port: <script> document.write(document.getElementById('venus').host); </script> </p> <p><b>注意:</b>如果没有指定端口部分的URL,或者是80(默认),一些浏览器将不会显示端口的部分</p>