HTML 参考手册
HTML <a> coords 属性
以下实例在 <a> 元素中使用 shape 和 coords 属性来创建图像地图
源代码:
点击运行 »
<object data="/examples/planets.gif" alt="Planets" type="image/gif" usemap="#Map1"> <map name="Map1"> <a href="/examples/sun.htm" shape="rect" coords="0,0,82,126">太阳</a> <a href="/examples/mercur.htm"shape="circle" coords="90,58,3">水星</a> <a href="venus.htm" shape="circle" coords="124,58,8">金星</a> </map> </object>
运行结果:
点击运行 »