【JavaWeb学习】—超链接(三)

阅读 113

2022-09-17


【JavaWeb学习】—超链接(三)

【JavaWeb学习】—超链接(三)_学习

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>

<!--
target="_self"默认值
target="_blank"打开新的页面进行跳转

-->
<a href="https://www.baidu.com/" target="_blank">百度一下,你就知道</a><br>
<a href="https://www.baidu.com/" target="_self">百度一下,你就知道</a><br>
<a href="https://www.baidu.com/">百度一下,你就知道</a><br>

<body>

</body>

</html>


精彩评论(0)

0 0 举报