作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这部分脚本
<?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/
我是一名优秀的程序员,十分优秀!