必需的name属性指定图像映射的名称,name属性与 <img>的usemap属性相关联,并在图像和地图之间创建关系。
具有可点击区域的图像地图:
<!DOCTYPE html> <html> <head> <title>HTML:<map> name 属性 - 编程教程网(123520.net)</title> </head> <body> <p>Click on the sun or on one of the planets to watch it closer:</p> <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.html"> <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.html"> <area shape="circle" coords="124,58,8" alt="Venus" href="venus.html"> </map> </body> </html>测试看看 ‹/›
IEFirefoxOperaChromeSafari
所有主流浏览器都支持 name 属性。
name属性指定图像映射的名称。
name属性与<img>的usemap属性相关联,并在图像和地图之间创建关系。
没有。
<map name="mapname">
值 | 描述 |
---|---|
mapname | 图像映射的名称。 |