gpt4 book ai didi

javascript - OnClick 打开新窗口但也改变当前窗口

转载 作者:行者123 更新时间:2023-11-29 18:19:17 26 4
gpt4 key购买 nike

我正在使用 IE8。我已经设置了以下链接:

<a href="terms.html" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=600')" />Terms & Conditions</a>

当我点击它时。我按照我想要的方式弹出。但它也将当前窗口设置为相同的 URL。我知道我错过了一些愚蠢的东西。只是可以弄清楚。

谢谢!

最佳答案

像下面这样在 window.open 之后添加 return false; :

<a href="terms.html" onclick="window.open(this.href, 'targetWindow', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=600');return false;" />Terms & Conditions</a>

关于javascript - OnClick 打开新窗口但也改变当前窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20360850/

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