链接的相关基础知识
1 基本标签以及属性
a: 定义锚
href属性:指定要跳转的url
name属性:规定要跳转到元素的名称,一般指定name,href=””
target属性:规定在哪里打开url,在新页面打开,使用“_blank”, “_self”在本页打开
2 典型代码
<!-- 在新页面跳转到百度搜索 -->
<a href="http://www.baidu.com" target="_blank">百度</a>
<!-- 在本页跳转到百度 -->
<a href="http://www.baidu.com" target="_self">百度</a>
<!-- 锚点的应用,在本页定位元素,回到顶部的典型案例 -->
<h1 name="itop">我是顶部<h1>
<table height="800px">
<tr>
<td> </td>
</tr>
</table>
<a href="" name="#itop">回到顶部</a>