使用html在同一选项卡中打开链接

时间:2017-07-03 11:57:20

标签: html

我想在单击一个单词时用html在同一个标​​签中打开一个链接。尽管如此,即使我使用target="_self“尝试过它而不使用任何目标,它也仅适用于target="_blank",但是,正如您所知,这会打开另一个标签中的链接。

代码:

    <!DOCTYPE html>
<html>
<head>
<style type="text/css">
body
{
  min-width:360px;
}
a{
   color:#009900;
   text-decoration:none;
}
a:hover
{
  text-decoration:underline;
}
p
{
  font:0.8em sans-serif;
}
h1
{
  font:1.5em sans-serif;
  color:#fff;
  background:#006600;
  padding:5px
}
</style>
</head>

<body>
  <h1>play</h1>
 <p><a href="https://www.youtube.com" target="_blank">YT player</a></p>
</body>
</html>

3 个答案:

答案 0 :(得分:3)

<a target="_self" href="https://www.youtube.com" >YT player</a>

使用_self

<a target="_self" href="https://www.youtube.com" >YT player</a>

答案 1 :(得分:2)

我确定您可能已经知道了(一年后),但是您的代码是

<a target="_self" href="https://www.youtube.com" >YT player</a>

写的有点奇怪。试试:

<a href="https://www.youtube.com" target="_self">YT player</a>

答案 2 :(得分:0)

这对我有用:

<p><a href="https://www.youtube.com">YT-Player</a></p>