HTML DOM Area noHref 屬性

2018-08-04 20:39 更新

Area noHref 屬性

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

定義和用法

noHref 屬性可設(shè)置或返回 某區(qū)域的 nohref 屬性值。

nohref 屬性指定一個(gè)區(qū)域沒有相關(guān)鏈接.

提示: nohref 屬性通知瀏覽器超鏈接 屬性不存在。你也可以不使用 href 屬性來更簡(jiǎn)單的設(shè)置沒有相關(guān)鏈接。

語(yǔ)法

areaObject.noHref=true|false


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

除了 IE 瀏覽器,所有主流瀏覽器都支持 noHref 屬性。


實(shí)例

實(shí)例

下面的例子可返回圖像映射中 "Venus" 區(qū)域的 "noHref" 屬性:

<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"
nohref="nohref">
</map>

<p>Value of nohref attribute for the "Venus" area is:
<script>
document.write(document.getElementById("venus").noHref);
</script>
</p>

</body>
</html>

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

Value of nohref attribute for the "Venus" area is: true

嘗試一下 ?


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)