所以我想打开一个新窗口/标签并使用
<script>
function popunder() {
window.open("https://link.here", '_blank', 'toolbar=yes, location=yes, status=yes, menubar=yes, scrollbars=yes').blur();
}
</script>
它可以工作,但是我想在打开“ window.open”的同时将主页转发到新的网站链接。
我也使用onclick="popunder()"
。
我尝试过
window.location.href
和window.location.replace
,但无效。
我也完全没有代码经验。
如何通过单击window.open的相同单击将主页转发到另一个链接?
答案 0 :(得分:0)
如果您想使用window.open
的魔力在于第二个参数(应该受影响的窗口名称),您可以在这里阅读更多内容:https://developer.mozilla.org/en-US/docs/Web/API/Window/open
window.open("http://google.com", "_blank");
// the above opens a new window/tab
window.open("http://bing.com", "_self");
// the above navigates to a new page.
注意,在StackOverflow上,Google弹出式窗口来自沙箱,因此不会注册。您可以在此fiddle中看到上述代码的可验证版本(请确保不要在弹出窗口阻止程序上)