刷新窗口的方法
<script type="text/javascript">
window.parent.dialogArguments.document.execCommand('Refresh');
</script>
浮層內嵌iframe及frame集合窗口,刷新父頁面的多種方法
<script type="text/javascript">
window.parent.location.reload();
</script>
彈出子頁面
彈出子頁面
<script type="text/javascript">
window.opener.location.reload();
</script>
子窗口刷新父窗口
子窗口刷新父窗口
<script type="text/javascript">
window.self.opener.location.reload();
</script>
刷新以open()方法打開的窗口[上面的彈出子頁面也可以完成]
刷新以open()方法打開的窗口[上面的彈出子頁面也可以完成]
<script type="text/javascript">
window.opener.location.href=window.opener.location.href;
</script>