Area href 属性
Area 对象的 href 属性可以设置或返回 <area> 元素的 href 属性的值
<area> 元素 href 属性指定了 <area> 元素的目标链接
语法
areaObject.href= "URL"
浏览器支持
所有主要浏览器都支持 href 属性
范例
返回 <map> 中 "Venus" 区域的 href 属性
<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>金星的href属性值: <script> document.write(document.getElementById("venus").href); </script> </p>