gpt4 book ai didi

html - 当我在我的代码中添加目标 ="_blank"时,它仍然在单击它的保存窗口中打开

转载 作者:行者123 更新时间:2023-11-28 04:45:32 25 4
gpt4 key购买 nike

正如我所说,当我在我的代码中添加 target="_blank" 时,它仍然会在单击它的保存窗口中打开。我已经尝试放置 target="_blank 在代码的前面和后面,但我似乎没有让它工作。你能帮我吗?这是我正在使用的 HTML:`

<!doctype html>
<html>
<head>
<title>TacoMannen</title>
<link rel="stylesheet" type="text/css" href="\TacoSite CSS.css">
</head>
<body>
<br>
<button target="_blank" class="button Kalender disabled" onclick="location.href='/kalender'" >Kalender</button>
<button target="_blank" class="button blogg" onclick="location.href='/blogg'" >Blogg</button>
<button target="_blank" class="button kontakt" onclick="location.href='/kontakt-meg'" >Kontakt Meg</button>
<button target="_blank" onclick="location.href='https://www.youtube.com/channel/UC1T-CxkwZ8fLDzlmIOM2Rxw?view_as=subscriber'" type="button" >Min Kanal</button>
<br>
</body>

</html>

这是我正在使用的 CSS:

.button {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}

.button:hover {
background-color: #4CAF50;
color: white;
}

如果需要,还有一个片段:

.button {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}

.button:hover {
background-color: #4CAF50;
color: white;
}
<!doctype html>
<html>

<head>
<title>TacoMannen</title>
<link rel="stylesheet" type="text/css" href="\TacoSite CSS.css">
</head>

<body>
<br>
<button target="_blank" class="button Kalender disabled" onclick="location.href='/kalender'">Kalender</button>
<button target="_blank" class="button blogg" onclick="location.href='/blogg'">Blogg</button>
<button target="_blank" class="button kontakt" onclick="location.href='/kontakt-meg'">Kontakt Meg</button>
<button target="_blank" onclick="location.href='https://www.youtube.com/channel/UC1T-CxkwZ8fLDzlmIOM2Rxw?view_as=subscriber'" type="button">Min Kanal</button>
<br>
</body>

</html>

如果人们能指出我不知道的其他错误,那就太好了:-)

最佳答案

你必须使用 <a>标记而不是 <button>标签,因为他们没有 target属性或 href .您指示页面使用 JavaScript 打开,而不是正常的 href .您有两个选择:

  1. 将其更改为 <a href=""> .

    <a target="_blank" class="button Kalender disabled" href="/kalender">Kalender</a>
  2. 使用 window.open对于 <button> .

    <button class="button Kalender disabled" onclick="window.open('/kalender');" >Kalender</button>

关于html - 当我在我的代码中添加目标 ="_blank"时,它仍然在单击它的保存窗口中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47797610/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com