Javascript重定向从Iframe Javascript / PHP

时间:2015-04-09 16:52:35

标签: javascript php iframe

我试图研究它,但我认为我的语法可能有问题。以下是尝试的代码。我需要做的是将iframe重定向到同一域上的另一个页面。标题:位置只重定向iframe,我需要重定向整个页面。从我读过的其他帖子中,这不能用PHP完成,而是需要javascript。这就是我现在直接在PHP中使用的内容。提前谢谢。

//header("Location: http://propertytaxdfw.com/CurrentWebsite/error.php?msg=".$httpParsedResponseAr['L_LONGMESSAGE0']);
                $ErrorUrl = 'http://propertytaxdfw.com/CurrentWebsite/error.php?msg=".$httpParsedResponseAr['L_LONGMESSAGE0']';
                <script type="text/javascript">parent.location = '<?php echo $ErrorUrl?>';</script>

1 个答案:

答案 0 :(得分:0)

您是否尝试过parent.location

<?php
$ErrorUrl = 'http://propertytaxdfw.com/CurrentWebsite/error.php';
?>

<script type="text/javascript">parent.location = '<?php echo $ErrorUrl?>';</script>