最新的Web开发教程
 

HTML <area> nohref Attribute

<HTML <area>标签

图像映射,可点击区域,以及nohref属性:

<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" nohref alt="Sun">
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
试一试»

定义和用法

<area> nohref属性不是HTML5的支持。

nohref属性是一个布尔属性。

当存在时,它指定的区域不具有相关联的链路。

提示: nohref属性表明<area>没有关联的链接。你可以更容易地做到这一点不包括href属性。


浏览器支持

属性
nohref Not supported Not supported Not supported Not supported Not supported

HTML和XHTML之间的差异

在XHTML中,最小的属性是被禁止的,而nohref属性必须被定义为<area nohref="nohref" />


句法

<area nohref>

<HTML <area>标签