gpt4 book ai didi

javascript - 确认后才重定向

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

我想让用户点击一个链接,然后弹出一个带有是或否选择的 javascript 窗口,但如果是,则重定向到不同的 url,如果不是,则留在同一页面上。我尝试了下面的代码,但在选择是或否时它会将我带到同一页面。

function YNconfirm() { 
if (window.confirm('Really go to another page?'))
{
alert("You agree")
window.location.href = (http:///mediclaim_portal/logout2.php');
}
else
{
window.location.href = (this.document);
}};
</script>

then
<a href="\mediclaim_portal/logout2.php" onclick="YNconfirm()">Home</a>

最佳答案

function YNconfirm() { 
if (window.confirm('Really go to another page?'))
{
alert("You agree")
window.location.href = 'http:///mediclaim_portal/logout2.php';
}
}

然后

<a href="/mediclaim_portal/logout2.php" onclick="YNconfirm(); return false;">Home</a>

关于javascript - 确认后才重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18852373/

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