Area noHref 屬性
Area 對(duì)象定義和用法
noHref 屬性可設(shè)置或返回 某區(qū)域的 nohref 屬性值。
nohref 屬性指定一個(gè)區(qū)域沒有相關(guān)鏈接.
提示: nohref 屬性通知瀏覽器超鏈接 屬性不存在。你也可以不使用 href 屬性來更簡(jiǎn)單的設(shè)置沒有相關(guān)鏈接。
語(yǔ)法
areaObject.noHref=true|false
瀏覽器支持
除了 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>
<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ì)象
更多建議: