案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function changeLink()
5
{
6
document.getElementById('venus').hash="bottom"
7
}
8
</script>
9
</head>
10
<body>
11
12
<img src="/img/eg_planets.jpg"
13
usemap="#planetmap" />
14
15
<map name="planetmap">
16
<area
17
id="venus"
18
shape="circle"
19
coords="180,139,14"
20
href ="/example/hdom/venus2.html#top"
21
alt="Venus" />
22
</map>
23
24
<input type="button" onclick="changeLink()" value="改变链接" />
25
26
</body>
27
</html>
28