gpt4 book ai didi

javascript - 使用 PHP 的 _top 重定向

转载 作者:行者123 更新时间:2023-12-03 11:39:50 24 4
gpt4 key购买 nike

我有关于 PHP 和重定向页面的问题。在我的 HTML 中,我有一个 iframe。

<iframe class="container" name="content" id="content"  src="LandingPage.php" name="contents" scrolling="no" frameborder="0"  onload="sizeFrame(this)" ></iframe><!-- CONTENT frame -->

我想将整个文档重新加载到index.php,而不仅仅是在iframe 中显示index.php。目前我所有的努力和搜索的建议都加载 iframe 中的 index.php 文件。如何强制页面卸载当前的login.html 文件并在同一窗口中仅重新加载index.php?

我在 LandingPage.php 顶部测试了以下内容,以确保页面可以显示。

这不是 session 有问题,因为index.php 文件显示的位置不正确。

       if(! isset($_SESSION['loginvalid']))
{
//header("Location: index.php");
//exit();
$URL="index.php";
$t = "_top";
echo "<script>window.location.replace='$URL' target= '$t'</script>";
//echo"window.location.href = $URL target= \"_top\"";
exit;

} else {

任何帮助和建议将不胜感激。

最佳答案

而不是

<script>window.location.replace='$URL'  target= '$t'</script>

尝试

<script>parent.location='$URL'</script>

关于javascript - 使用 PHP 的 _top 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26327657/

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