实例代码“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
</map>
15
16
<p>The port for the "Venus" area is:
17
<script>
18
document.write(document.getElementById('venus').port);
19
</script>
20
</p>
21
22
<p><b>Note:</b> If the port part is not specified in the URL, or is 80 (which is default), some browsers will just display 0 or nothing.</p>
23
24
</body>
25
</html>