HTMLa标签的target属性
<a> 标签的 target 属性规定在何处打开链接⽂档。
_blank
浏览器总在⼀个新打开、未命名的窗⼝中载⼊⽬标⽂档。
_self
这个⽬标的值对所有没有指定⽬标的 <a> 标签是默认⽬标,它使得⽬标⽂档载⼊并显⽰在相同的框架或者窗⼝中作为源⽂档。这个⽬标是多余且不必要的,除⾮和⽂档标题 <base> 标签中的 target 属性⼀起使⽤。
_parent
这个⽬标使得⽂档载⼊⽗窗⼝或者包含来超链接引⽤的框架的框架集。如果这个引⽤是在窗⼝或者在顶级框架中,那么它与⽬标 _self 等效。
_top
这个⽬标使得⽂档载⼊包含这个超链接的窗⼝,⽤ _top ⽬标将会清除所有被包含的框架并将⽂档载⼊整个浏览器窗⼝。
打开新窗⼝
被指向的超链接使得创建⾼效的浏览⼯具变得很容易。例如,⼀个简单的内容⽂档的列表,可以将⽂档重定向到⼀个单独的窗⼝:
<h3>Table of Contents</h3>
<ul>
<li><a href="pref.html" target="view_window">Preface</a></li>
<li><a href="chap1.html" target="view_window">Chapter 1</a></li>
<li><a href="chap2.html" target="view_window">Chapter 2</a></li>
<li><a href="chap3.html" target="view_window">Chapter 3</a></li>
</ul>
在框架中打开窗⼝
不⽤打开⼀个完整的浏览器窗⼝,使⽤ target 更通常的⽅法是在⼀个 <frameset> 显⽰中将超链接内容定向到⼀个或者多个框架中。可以将这个内容列表放⼊⼀个带有两个框架的⽂档的其中⼀个框架中,并⽤这个相邻的框架来显⽰选定的⽂档:
<frameset cols="100,*">
href标签怎么用<frame src="toc.html">
<frame src="pref.html" name="view_frame">
</frameset>
<h3>Table of Contents</h3>
<ul>
<li><a href="pref.html" target="view_frame">Preface</a></li>
<li><a href="chap1.html" target="view_frame">Chapter 1</a></li>
<li><a href="chap2.html" target="view_frame">Chapter 2</a></li>
<li><a href="chap3.html" target="view_frame">Chapter 3</a></li>
</ul>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。