案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<img src="/img/eg_planets.jpg"
5
usemap="#planetmap" />
6
7
<map name="planetmap">
8
<area
9
id="venus"
10
shape="circle"
11
coords="180,139,14"
12
href ="/example/html/venus.html"
13
alt="Venus" />
14
</map>
15
16
<p>"Venus" 区域的 hostname 和 port 是:
17
<script type="text/javascript">
18
x=document.getElementById('venus');
19
document.write(x.host);
20
</script>
21
</p>
22
23
</body>
24
</html>
25