如何为图像的某些部分创建链接

How to create links for certain parts of an image?

本文关键字:些部 创建 链接 图像      更新时间:2023-09-26

我有一个人体的图像,我应该让眼睛、鼻子和耳朵等所有器官都可以点击以链接到不同的网页。这在HTML和/或JavaScript中是开箱即用的吗?

尝试使用图像映射。

例如:

<img src="http://www.w3schools.com/tags/planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="http://www.w3schools.com/tags/sun.htm" alt="Sun">
  <area shape="circle" coords="90,58,3" href="http://www.w3schools.com/tags/mercur.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="http://www.w3schools.com/tags/venus.htm" alt="Venus">
</map>