当前位置: 首页 > 文档资料 > HTML 入门教程 >

<area>

优质
小牛编辑
125浏览
2023-12-01

描述 (Description)

HTML标记用于定义图像映射中的区域。

例子 (Example)

<!DOCTYPE html>
<html>
   <head>
      <title>HTML area Tag</title>
   </head>
   <body>
      <img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/>
      <map name = "tutorials">
         <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27"
            href = "/perl/index.htm" alt = "Perl Tutorial" target = "_blank" />
         <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial"
            href = "/html/index.htm" target = "_blank" />
         <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial"
            href = "/php/index.htm" target = "_blank" />
      </map>
   </body>
</html>

全局属性 (Global Attributes)

此标记支持HTML Attribute Reference描述的所有全局属性

具体属性 (Specific Attributes)

HTML标记还支持以下附加属性 -

属性描述
alttext指定区域的备用文本。
coords

如果shape =“rect”则coords =“left,top,right,bottom”

如果shape =“circ”则coords =“centerx,centery,radius”

如果shape =“poly”则coords =“x1,y1,x2,y2,..,xn,yn”

指定适合shape属性的坐标,以定义图像映射的图像区域。
下载 HTML-5filename指定在用户单击超链接时下载目标。
hrefURL指定页面的URL或链接所指向的锚的名称。
的hreflang HTML-5language_code指定目标URL的语言。
媒体 HTML-5media query指定针对目标URL优化的媒体/设备。
nohreftrue/false从图像映射中排除某个区域
相对 HTML-5alternate author bookmark help license next nofollow noreferrer prefetch prev search tag指定当前文档与目标URL之间的关系
shaperect rectangle circ circle poly polygon指定图像映射的形状
target_blank _parent _self _top

在哪里打开目标URL。

_blank - 目标网址将在新窗口中打开

_self - 目标URL将在单击的框架中打开

_parent - 目标URL将在父框架集中打开

_top - 目标网址将在整个窗体中打开

类型 HTML-5mime_type指定目标URL的MIME(多用途Internet邮件扩展)类型。

事件属性 (Event Attributes)

此标记支持HTML Events Reference中描述的所有事件属性

浏览器支持 (Browser Support)

ChromeFirefoxIEOperaSafariAndroid
YesYesYesYesYesYes