HTML <area> 標(biāo)簽的 target 屬性
定義和用法
target 屬性規(guī)定區(qū)域中連接的目標(biāo)。
實例
帶有可點擊區(qū)域的圖像映射:
<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" />
<map name="planetmap" id="planetmap">
<area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus"
target=""_blank"
/>
<area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" />
<area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" />
</map>
瀏覽器支持
所有主流瀏覽器都支持 target 屬性。
語法
<area target="value">
屬性值
值 | 描述 |
---|---|
_blank | 在新窗口中打開被鏈接文檔。 |
_self | 默認(rèn)。在相同的框架中打開被鏈接文檔。 |
_parent | 在父框架集中打開被鏈接文檔。 |
_top | 在整個窗口中打開被鏈接文檔。 |
framename | 在指定的框架中打開被鏈接文檔。 |