<map name="planetmap" id="planetmap">
<area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" />
<area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" />
<area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" />
</map>
shape="circle" coords="x,y,r" 区域为圆形 后面是圆心坐标和以像素为单位的半径
shape="rect" coords="x1,y1,x2,y2" 区域为矩形 矩形的左上右下两点的坐标
shape="poly" coords="x1,y1,x2,y2,x3,y3..." 区域为多边形 多边形所有顶点的坐标
以上所有坐标都是相对于图形img左上脚坐标而言的
<img>中的 usemap 属性可引用 <map>中的 id 或 name 属性(取决于浏览器),所以我们应同时向 <map>添加 id 和 name 属性。
其中如果area划分的区域部分交叉则前面的area覆盖后面的area.即第一个area覆盖第二个area。
alt是在图片不显示的时候才显示的比如你的图片不存在的情况
或者是路径写错的情况下
想要做提示文字
其实用的是title属性
你再写个title=“提示文字"应该就可以了