Area noHref 属性
Area 对象的 noHref 属性可设置或返回 <area> 元素的 nohref 属性值
nohref 属性指定一个 <area> 元素没有相关链接
nohref 属性通知浏览器超链接属性不存在
更简单的做法就是不设置 href 属性
语法
areaObject.noHref=true|false
浏览器支持
除了 IE 浏览器,所有主流浏览器都支持 noHref 属性
范例
返回 <map> 中 "Venus" 区域的 "noHref" 属性
<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" nohref="nohref"> </map> <p>Value of nohref attribute for the "Venus" area is: <script> document.write(document.getElementById("venus").noHref); </script> </p>