JavaWeb学习—超链接
Posted 王同学要努力
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
以上是关于JavaWeb学习—超链接的主要内容,如果未能解决你的问题,请参考以下文章