Area target 屬性
Area 對(duì)象定義和用法
target 屬性可設(shè)置或者返回區(qū)域中 target 屬性值。
語(yǔ)法
areaObject.target=value
target 屬性可以是以下值:
值 | 描述 |
---|---|
_blank | 在一個(gè)新的未命名的窗口載入文檔 |
_self | 在相同的框架或窗口中載入目標(biāo)文檔 |
_parent | 把文檔載入父窗口或包含了超鏈接引用的框架的框架集 |
_top | 把文檔載入包含該超鏈接的窗口,取代任何當(dāng)前正在窗口中顯示的框架 |
framename | 在同一個(gè)名稱的frame框架中載入文檔。 |
瀏覽器支持
所有主要瀏覽器都支持 target 屬性
實(shí)例
實(shí)例
下面的例子可返回圖像映射中 "Venus" 區(qū)域的 target 屬性:
<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"
target="_blank">
</map>
<p>The value of the target attribute for the "Venus" area is:
<script>
document.write(document.getElementById("venus").target);
</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"
target="_blank">
</map>
<p>The value of the target attribute for the "Venus" area is:
<script>
document.write(document.getElementById("venus").target);
</script>
</p>
</body>
</html>
以上實(shí)例輸出結(jié)果:
The value of the target attribute for the "Venus" area is: _blank
嘗試一下 ?
Area 對(duì)象
更多建議: