port
Area port 属性
定义和用法
port 属性可设置或者返回 href属性值得端口部分。
语法
areaObject.port=port
浏览器支持
所有主要浏览器都支持 port 属性
提示和注释
注意: 如果在URL中的端口部分没有指定,或是80(默认值),有些浏览器会显示0或什么都不显示。
实例
下面的例子可返回 "Venus" 区域中的端口:
<html>
<body>
<img src="planets.gif"
width="145" height="126"
usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle"
coords="124,58,8"
alt="Venus"
href="venus.htm">
</map>
<p>The port for the "Venus" area is:
<script>
document.write(document.getElementById(‘venus‘).port);
</script>
</p>
</body>
</html>
<body>
<img src="planets.gif"
width="145" height="126"
usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle"
coords="124,58,8"
alt="Venus"
href="venus.htm">
</map>
<p>The port for the "Venus" area is:
<script>
document.write(document.getElementById(‘venus‘).port);
</script>
</p>
</body>
</html>
以上实例输出结果:
The port for the "Venus" area is: 80