- 0133技术站
- 联系QQ:88526
- QQ交流群
- 微信公众号
该区域的超链接目标。它的值是一个有效的URL。在HTML4中,元素中必须存在此属性或nohref属性。在HTML5中,可以省略该属性; 如果是这样,则area元素不代表超链接。
所有主流浏览器都支持 href 属性。
在 HTML5 中, <area> 标签已经不再使用 href 属性, 使用 placeholder来指定链接。
<area href="URL">
值 | 描述 |
---|---|
URL | 链接的 URL。可能的值:
|
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p>点击太阳或其他行星,注意变化:</p> <img src="http://ss.0133.cn/upload/image/885/902/932/1553322045901285.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="https://public.xp.cn/down/course_demo/html/area_tabs/sun.htm"> <area shape="circle" coords="90,58,3" alt="Mercury" href="https://public.xp.cn/down/course_demo/html/area_tabs/mercur.htm"> <area shape="circle" coords="124,58,8" alt="Venus" href="https://public.xp.cn/down/course_demo/html/area_tabs/venus.htm"> </map> </body> </html>
点击 "运行实例" 按钮查看在线实例
推荐手册