实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<img id="planets" src="/upload/love/html.gif"
6
width="145" height="126"
7
usemap="#planetmap">
8
9
<map name="planetmap">
10
<area id="venus" shape="circle"
11
coords="124,58,8"
12
alt="The planet Venus"
13
href="venus.htm">
14
</map>
15
16
<p>The value of the usemap attribute is:
17
<script>
18
document.write(document.getElementById("planets").useMap);
19
</script>
20
</p>
21
22
</body>
23
</html>