HTML DOM Area port 屬性

2018-08-04 20:39 更新

Area port 屬性

Area 對象參考手冊 Area 對象

定義和用法

port 屬性可設(shè)置或者返回 href屬性值得端口部分。

語法

areaObject.port=port


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 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>

以上實(shí)例輸出結(jié)果:

The port for the "Venus" area is: 80

嘗試一下 ?


Area 對象參考手冊 Area 對象
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號