gpt4 book ai didi

javascript - 使用javascript打开新选项卡并重新加载父页面

转载 作者:行者123 更新时间:2023-12-03 05:34:14 28 4
gpt4 key购买 nike

我有一个 WordPress 主题,带有链接到 .pdf 文档的 Logo 。为了将 Logo 链接到文档,我必须使用自定义 JavaScript:

document.getElementById('logo').href = "javascript:window.open('mylink')"

我希望在新选项卡中打开此文档。目前它可以工作,但由于某些原因,我需要在新选项卡打开后重新加载父页面。

我可以添加什么才能重新加载父页面?谢谢

最佳答案

<a onclick="open_in_new_tab_and_reload('./path_to_pdf.pdf')" href="#">PDF</a>

<script>
function open_in_new_tab_and_reload(url)
{
//Open in new tab
window.open(url, '_blank');
//focus to thet window
window.focus();
//reload current page
location.reload();
}
</script>

关于javascript - 使用javascript打开新选项卡并重新加载父页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40801875/

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