HTML map 标签
map 标签 -- 定义图像点击区域的集合
map标签示例
<img
src
=
"http://www.dreamdu.com/images/html_table.gif"
usemap
=
"#Map"
/>
<map
name
=
"Map"
id
=
"Map"
>
<area
shape
=
"rect"
coords
=
"35,29,135,99"
href
=
"#"
/>
<area
shape
=
"circle"
coords
=
"243,78,44"
href
=
"#"
/>
<area
shape
=
"poly"
coords
=
"120,137,195,154,135,207"
href
=
"#"
/>
</map>