gpt4 book ai didi

javascript - 在新窗口中打开 DIV 按钮

转载 作者:行者123 更新时间:2023-12-02 18:07:46 25 4
gpt4 key购买 nike

我在 Stack Overflow 上看到了几种解决方法,但在尝试这些解决方案后,我的按钮没有任何效果。这是我正在使用的代码:

<center>
<div onclick="parent.location='http://google.com'" data-mce-onclick=""><button class="button"><font size=”6”>Visit Google</font></button></div>
</center>

使用 parent.location 会导致 google 在当前窗口中加载。我尝试了 open.window open.window.href 添加 ,'_blank' 和其他一些调整,但无论出于何种原因它仍然加载同一窗口,否则我根本无法链接。调整此代码的最简单方法是什么?

最佳答案

parent.location 引用同一个窗口。我不知道你从哪里得到了你尝试过的其他事情的想法,但是 window.open似乎就是您要找的:

<div onclick="window.open('http://google.com')" data-mce-onclick="">
<button class="button"><font size=”6”>Visit Google</font></button>
</div>

还值得注意的是,您使用的是非常旧且已弃用的标签。 centerfont 应替换为 CSS 样式。

关于javascript - 在新窗口中打开 DIV 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19957006/

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