Area href 屬性
Area 對(duì)象定義和用法
href 屬性克設(shè)置或返回某區(qū)域href屬性的值。
href 屬性指定了某個(gè)區(qū)域的目標(biāo)鏈接。
語(yǔ)法
areaObject.href=URL
瀏覽器支持
所有主要瀏覽器都支持 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>
<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
//o2fo.com/jsref/venus.htm
嘗試一下 ?
Area 對(duì)象
更多建議: