Home >Web Front-end >JS Tutorial >Summary of various methods of refreshing the parent page in javascript_javascript skills

Summary of various methods of refreshing the parent page in javascript_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:37:2849845browse

Use iframe and pop up sub-page to refresh the parent page iframe

<script language=JavaScript> 
parent.location.reload(); 
</script>

Pop up 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 windows opened with the open() method

<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>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn