HTML DOM Area pathname 屬性

2018-08-04 20:39 更新

Area pathname 屬性

Area 對象參考手冊 Area 對象

定義和用法

pathname 屬性可設(shè)置或返回href屬性值中的路徑名部分。

語法

areaObject.pathname=path


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 pathname 屬性


提示和注釋

注意:在以下實例中, IE 和 Opera 返回 "jsref/venus.htm", 但是 Firefox, Chrome, 和 Safari 返回 "/jsref/venus.htm".


實例

實例

下面的例子可返回 "Venus" 區(qū)域中href屬性值中的路徑名:

<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>Venus area's pathname:
<script>
document.write(document.getElementById('venus').pathname);
</script>
</p>

</body>
</html>

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

Venus area's pathname: jsref/venus.htm

嘗試一下 ?


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號