HTML5学习(6)a元素

a元素代表超链接

href属性 hyper reference:通常代表跳转地址

target属性:_self在本窗口中打开(默认),_blank在新窗口中打开。

id属性:全局属性,表示元素在文档中的唯一编号。

1.普通链接

<a href="//www.baidu.com" target="_blank">BAIDU</a>

2.锚链接

<a href="#target1">前往标题1</a>

<h1 id="target1">标题1</h1> 在本页面中跳转,不会刷新页面

<a href="index.html#target1">前往index页面中的标题1</a>

<h1 id="target1">标题1</h1> 跳转到不同的页面,会刷新页面

3.功能链接

<a href="javascript:alert('你好')>点击弹出你好</a>

<a href="mailto:54354@qq.com>点击发送邮件</a>

<a href="tel:1383838383">点击拨打电话</a>

原文地址:https://www.cnblogs.com/1016391912pm/p/11534645.html