HTML <area> href 属性

❮ HTML <area> 标签

实例

带有可点击区域的图像映射:

<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="太阳">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="水星">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="金星">
</map>
亲自试一试 »

定义和用法

href 属性规定区域中连接的目标。

如果 href 属性不存在,则 <area> 标签不是超链接。


浏览器支持

属性
href Yes Yes Yes Yes Yes

语法

<area href="URL">

属性值

描述
URL 指定区域的超链接目标。

可能的值:

  • 绝对 URL - 指向另一个网站 ( 比如 href="http://www.example.com/sun.htm")
  • 相对 URL - 指向网站中的文件 ( 比如 href="sun.htm")
  • 链接到页面中具有指定 id 的元素 ( 比如 href="#top")
  • 其他协议 ( 比如 https://, ftp://, mailto:, file:, etc..)
  • 脚本 ( 比如 href="javascript:alert('Hello');")

❮ HTML <area> 标签