我必须使用iframe来阻止页面在操作完成之前重新加载。但是,我需要在动作发生后刷新它。我尝试了两种方法,刷新页面并重定向到同一页面。
PHP:
if(isset($_POST['btn']) {
//Action
location.reload();
//I also tried
header("Location: index.php");
}
HTML:
<iframe width="0" height="0" border="0px solid white" style="display:none" name="iframe1" id="iframe1"></iframe>
<form action="index.php" method="post" target="iframe1">
感谢您的帮助。所有输入都表示赞赏。