Home > Article > Web Front-end > How to refresh the parent window in javascript
Use iframe and pop-up sub-page to refresh the parent page iframe
<script language=JavaScript> parent.location.reload(); </script>
Pop up the sub-page
<script language=JavaScript> window.opener.location.reload(); </script>
The child window refreshes the parent window
<script language=JavaScript> self.opener.location.reload(); </script>
Refresh the open() method Window
<script language=JavaScript> window.opener.location.href=window.opener.location.href; </script>
Refresh the window opened with winodw.showModelDialog() method
<script language="javascript"> window.parent.dialogArguments.document.execCommand('Refresh'); </script>
The above is the detailed content of How to refresh the parent window in javascript. For more information, please follow other related articles on the PHP Chinese website!