Blogger Information
Blog 11
fans 0
comment 0
visits 10890
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML实践-a标签相关基础
山下之石
Original
621 people have browsed it

链接的相关基础知识

1 基本标签以及属性

a: 定义锚
href属性:指定要跳转的url
name属性:规定要跳转到元素的名称,一般指定name,href=””
target属性:规定在哪里打开url,在新页面打开,使用“_blank”, “_self”在本页打开

2 典型代码

  1. <!-- 在新页面跳转到百度搜索 -->
  2. <a href="http://www.baidu.com" target="_blank">百度</a>
  3. <!-- 在本页跳转到百度 -->
  4. <a href="http://www.baidu.com" target="_self">百度</a>
  5. <!-- 锚点的应用,在本页定位元素,回到顶部的典型案例 -->
  6. <h1 name="itop">我是顶部<h1>
  7. <table height="800px">
  8. <tr>
  9. <td>&nbsp;</td>
  10. </tr>
  11. </table>
  12. <a href="" name="#itop">回到顶部</a>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post