HTML DOM Area href 屬性

2018-08-04 20:39 更新

Area href 屬性

Area 對(duì)象參考手冊(cè) Area 對(duì)象

定義和用法

href 屬性克設(shè)置或返回某區(qū)域href屬性的值。

href 屬性指定了某個(gè)區(qū)域的目標(biāo)鏈接。

語(yǔ)法

areaObject.href=URL


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


實(shí)例

實(shí)例

下面的例子可返回圖像映射中 "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>Value of href attribute for Venus is:
<script>
document.write(document.getElementById("venus").href);
</script>
</p>

</body>
</html>

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

Value of href attribute for Venus is:
//o2fo.com/jsref/venus.htm

嘗試一下 ?


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)