Blogger Information
Blog 5
fans 2
comment 0
visits 3242
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
链接元素_9月29日作业01
边边
Original
529 people have browsed it

链接元素

一、链接元素的基础格式

<a href=""></a>

二、链接元素的用途

  1. 跳转页面

<a href="https://www.baidu.com" target="_self">百度</a>

点击“百度”,将跳转到href属性链接的页面,页面打开方式由targer属性确定,常用属性值有_self在本窗口打开,_blank在新窗口打开。

  1. 下载文件

<a herf="http://127.0.0.1/123.txt" download="123.txt">点击下载</a>

点击“点击下载”,将下载http://127.0.0.1/123.txtdownload属性对firefox和chrome生效。其他浏览器对

  1. 发送邮件

<a herf="mailto:123456@qq.com">发送邮件</a>

  1. 拨打电话

<a herf="tel:18888888888">拨打电话</a>

  1. 设置锚点
  • 首先,在需要跳转到的元素上设置ID属性,比如<p ID="maodian">跳转到这里</p>
  • 在跳转发起点设置链接,并将其herf属性设置成需要跳转到的位置的元素的ID值<a herf="#maodian">点击这里会跳转</a>

三、锚点的用途

  1. 实现页面内跳转,通常可以设置在页眉和页脚。
  2. 可以实现跳转到指定页面或者指定页面的指定位置,实现跨页面链接。
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:很认真, 链接元素在实际工作中, 可能并不能用到这么多的功能
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