Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <area> 标签


示例

一个带有可点击区域的图像地图

<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379">

<map name="workmap">
  <area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
  <area shape="rect" coords="290,172,333,250" alt="Phone" href="phone.htm">
  <area shape="circle" coords="337,300,44" alt="Cup of coffee" href="coffee.htm">
</map>
自己试试 »

更多“自己试试”示例在下方。


定义和用法

The <area> 标签在图像地图中定义一个区域(图像地图是一张带有可点击区域的图像)。

<area> 元素始终嵌套在 <map> 标签内。

注意: usemap 属性在 <img> 中与 <map> 元素的 name 属性相关联,并在图像和地图之间创建关联关系。


浏览器支持

元素
<area>


属性

属性 描述
alt 文本 指定区域的备用文本。如果存在 href 属性,则为必填项
coords 坐标 指定区域的坐标
download 文件名 指定用户点击超链接时要下载的目标
href URL 指定区域的超链接目标
hreflang 语言代码 指定目标 URL 的语言
media 媒体查询 指定目标 URL 针对的媒体/设备
referrerpolicy no-referrer
no-referrer-when-downgrade
origin
origin-when-cross-origin
same-origin
strict-origin-when-cross-origin
unsafe-url
指定要与链接一起发送的引用信息
rel alternate
author
bookmark
help
license
next
nofollow
noreferrer
prefetch
prev
search
tag
指定当前文档与目标 URL 之间的关系
shape default
rect
circle
poly
指定区域的形状
target _blank
_parent
_self
_top
framename
指定在何处打开目标 URL
type 媒体类型 指定目标 URL 的媒体类型

全局属性

The <area> 标签还支持 HTML 中的全局属性


事件属性

The <area> 标签还支持 HTML 中的事件属性


更多示例

示例

另一个图像地图,包含可点击区域

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

<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>
自己试试 »

相关页面

HTML DOM 参考:区域对象


默认 CSS 设置

大多数浏览器会使用以下默认值显示 <area> 元素

area {
  display: none;
}


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.