我有一个显示为iframe的登录框
<div id="auth-container" >
<iframe src="loginiframe.php" width="100%" height="100%" frameBorder="0">Browser not compatible.</iframe>
</div>
现在在loginiframe.php里面有一个表单提交
<form action="auth.php">
我在哪里处理我的请求,我希望在处理后重定向到另一个页面,但现在
当点击提交时,auth.php会处理请求并重定向到下一页,但会在iframe中显示
我想将它们重定向到account.php页面
答案 0 :(得分:1)
您的auth.php页面可以使用以下脚本块重定向到另一个页面:
<script type="text/javascript">
window.parent.location = 'home.php';
</script>
假设您在身份验证后重定向到“home.php”。
答案 1 :(得分:0)
您也可以使用此行来使用PHP:
header('location: account.php');