gpt4 book ai didi

javascript - 如何将页面从单击退出按钮时使用 window.location.href 打开的新 url 重定向到上一个 url?

转载 作者:行者123 更新时间:2023-12-01 16:25:50 25 4
gpt4 key购买 nike

我有一个 html 中的按钮代码:

<button class="btn btn-default" (click)="openUrl()"> Open </button>

而在 app.component.ts 中,第一页是 https://example.com ,我有以下代码:

openUrl(){
window.location.href = 'http://example.com/url';
}

我在 http://example.com/url 中有退出按钮页。当他们点击退出按钮时,url 变为 http://example.com/url/exit .然后,它应该重定向到原始页面 https://example.com 15 秒后。

如何监听退出按钮的 url 并将页面重定向到原始页面。这里的问题是我已经退出了原来的页面。

最佳答案

您可以使用 iFrame 并执行类似的操作。

function removeIFrame() {
var frame = document.getElementById("iframe");
frame.parentNode.removeChild(frame);
}

function updateIframe(loc) {
var frame = document.getElementById("frame1");
console.info(frame.contentWindow);
if (frame.contentWindow.location == "example.com/exit") {
removeIframe();
}
}

function showIframe() {
var ele = document.getElementById("frameWrapper");
ele.style.display = "block";
}

<div style="display:none;" id="frameWrapper">
<iframe id="frame1" src="example.com/url" onLoad="updateIframe();"></iframe>
</div>

关于javascript - 如何将页面从单击退出按钮时使用 window.location.href 打开的新 url 重定向到上一个 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61721077/

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