我必須在動作完成之前使用iframe停止重新加載頁面。不過,在行動發生後,我需要刷新它。我嘗試了兩種方法,刷新頁面並重定向到同一頁面。如何在使用iframe時重定向onclick
PHP:
if(isset($_POST['btn_name']) {
//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">
<input type="submit" href="" style="margin-top:5px" name="btn_name" class="btn btn-success" value="Enter">
</form>
感謝您的幫助。所有的輸入是讚賞。
和良好的措施它會是「標題(」地點:的index.php');' –