1.a标签;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<a href="https://www.baidu.com">百度</a>
</body>
</html>
如上为a标签在html中的写法;运行结果如下:
此时鼠标单机便会跳转百度首页,这时我们便有一个疑惑,就是如何进行跳转的呢,其实这时依靠接下来要讲的href属性。
2.href属性
它是写在a标签的一个属性,属性名为href,属
性值为引入跳转页面的路径:
①网址(即域名);可以学习http的相关知识
②相对链接(本地元素);
③锚链接:功能是在本页面中进行跳转,值为id属性的值
3.target属性
它是a标签的一个属性,用来是否在新窗口中打开链接
属性值为_blank:打开新窗口
_self:在原窗口中打开
<a href="https://www.baidu.com" target="_blank" >百度</a>
运行结果如下: