HTML 超链接 a 标签
在 HTML 标签中,a 标签用于定义超链接,作用是从一个页面链接到另一个页面。
在 a 标签中有两个常用的属性:
- href 属性,用于指定链接目标的 url 地址(必须属性)。当为标签应用 href 属性时,它就具有了超链接的功能。
- target 属性,用于指定链接页面的打开方式,其中 \_self 为默认值,表示从当前页面打开,_blank 属性为在新窗口中打开。
href 属性:
1. 外部链接
<a href="http://www.baidu.com">百度一下</a>
2. 内部链接
<a href="./home.html">首页</a>
网站内部页面之间的互相链接,直接链接内部页面名称即可。
3. 空链接
<a href="#">首页</a>
如果当时没有确定链接目标时使用。
4. 下载链接
<a href="./img/heart.zip">下载</a>
如果 href 里面地址是一个文件或者压缩包,就会下载这个文件。
target 属性:
1. _self 属性值,默认值,表示在当前页面打开链接
<a href="http://www.baidu.com" target="_self">百度一下</a>
2. _blank 属性值,表示在新页面打开链接
<a href="http://www.baidu.com" target="_blank">百度一下</a>
3. _top 属性值,表示在顶层窗口中打开
one.html 页面内容
<p>我是第一层页面</p>
<iframe src="./two.html"></iframe>
two.html 页面内容
<p>我是第二层页面</p>
<iframe src="./three.html"></iframe>
three.html 页面内容
<p>我是第三层页面</p>
<a href="http://www.baidu.com" target="_top">百度一下</a>
点击后,会在第一层页面中打开链接,并清除所有框架。
4. _parent 属性值,表示在父级窗口中打开
one.html 页面内容
<p>我是第一层页面</p>
<iframe src="./two.html"></iframe>
two.html 页面内容
<p>我是第二层页面</p>
<iframe src="./three.html"></iframe>
three.html 页面内容
<p>我是第三层页面</p>
<a href="http://www.baidu.com" target="_parent">百度一下</a>
点击后,会在第二层页面中打开链接。
原创作者:吴小糖
创作时间:2023.11.17