Area noHref 属性
noHref 属性可设置或返回 某区域的 nohref 属性值。
nohref 属性指定一个区域没有相关链接.
提示: nohref 属性通知浏览器超链接 属性不存在。你也可以不使用 href 属性来更简单的设置没有相关链接。
语法
areaObject.noHref=true|false
浏览器支持
除了 IE 浏览器,所有主流浏览器都支持 noHref 属性。
在线实例
实例
下面的例子可返回图像映射中 "Venus" 区域的 "noHref" 属性:
<html> <body> <img src="planets.gif" width="145" height="126" usemap="#planetmap"> <map name="planetmap"> <area id="venus" shape="circle" coords="124,58,8" alt="Venus" href="venus.html" nohref="nohref"> </map> <p>Value of nohref attribute for the "Venus" area is: <script> document.write(document.getElementById("venus").noHref); </script> </p> </body> </html>
以上实例输出结果:
Value of nohref attribute for the "Venus" area is: true