HTML DOM Area hash 屬性

2018-08-04 20:39 更新

Area hash 屬性

Area 對象參考手冊 Area 對象

定義和用法

hash 屬性克設置或者返回 href 屬性值得錨部分。

語法

areaObject.hash=anchorname


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


實例

實例

下面的例子可返回 "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#description">
</map>

<p>The anchor part of the href attribute for Venus is:
<script>
document.write(document.getElementById("venus").hash);
</script>
</p>

</body>
</html>

以上實例輸出結果:

The anchor part of the href attribute for Venus is: #description

嘗試一下 ?


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號