Area port 屬性
Area 對象定義和用法
port 屬性可設(shè)置或者返回 href屬性值得端口部分。
語法
areaObject.port=port
瀏覽器支持
所有主要瀏覽器都支持 port 屬性
提示和注釋
注意: 如果在URL中的端口部分沒有指定,或是80(默認(rèn)值),有些瀏覽器會顯示0或什么都不顯示。
實(shí)例
實(shí)例
下面的例子可返回 "Venus" 區(qū)域中的端口:
<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>
以上實(shí)例輸出結(jié)果:
The port for the "Venus" area is: 80
嘗試一下 ?
Area 對象
更多建議: