实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<img 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="Venus"
13
href="venus.htm"
14
target="_blank">
15
</map>
16
17
<p>The value of the target attribute for the "Venus" area is:
18
<script>
19
document.write(document.getElementById("venus").target);
20
</script>
21
</p>
22
23
</body>
24
</html>