gpt4 book ai didi

javascript - 如何将用户重定向到引用页面

转载 作者:行者123 更新时间:2023-11-28 21:12:49 27 4
gpt4 key购买 nike

我有这部分脚本

 <?php
else:
?>
<script>
alert("You are not allowed to edit this CV!");
</script>

<?php
echo '<meta http-equiv="refresh" content="1"; url="'.$the_class->settings[0]['DomainName'].'myresume.php"';
endif;
?>

目标是,弹出警告框并单击“确定”按钮后,用户应该被重定向到http://www.mydomain.com/myresume.php

现在的问题是,在页面加载重定向之前,警告框不断弹出而根本没有到达目标页面...如何解决这个问题?

最佳答案

如果您想始终将它们发送回http://www.mydomain.com/myresume.php,您可以执行类似的操作:

<script>
alert("You are not allowed to edit this CV!");
window.location.href = 'http://www.mydomain.com/myresume.php';
</script>

如果您想将它们发送回之前所在的任何页面,您可以执行以下操作:

<script>
alert("You are not allowed to edit this CV!");
history.back();
</script>

关于javascript - 如何将用户重定向到引用页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8276686/

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