(转)window.opener方法的使用 刷新父页面

Posted viokingjava

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(转)window.opener方法的使用 刷新父页面相关的知识,希望对你有一定的参考价值。

原文博客:https://blog.csdn.net/xumingqing171/article/details/51897224

刷新打开(window.open)此窗口的父窗口
window.opener.location.href = ‘http://www.baidu.com‘;
window.opener.location.reload;


调用打开(window.open)此窗口的父窗口中的函数,需在服务器环境下才行
window.opener.connect_callback();


这里打开的login页窗口B里callback后执行如下代码。关闭当前login窗口B。再将用(window.open)打开窗口B的页面A刷新。


<script type="text/javascript">
document.domain = ‘focus.cn‘;
window.opener.location.href = ‘http://jia.focus.cn‘;
window.close();
</script>


通常在使用window.opener的时候要去判断父窗口的状态,如果父窗口被关闭或者更新,就会出错,
解决办法是加上如下的验证if(window.opener && !window.opener.closed)


但需要注意的我的环境是跨域的。所以需要加上document.domain = ‘focus.cn‘;
因为我们的域名是jia.focus.cn shop.focus.cn admin.focus.cn等.


如果你的网站是用统一个域名而不涉及跨域的话,则不用考虑此问题。




























以上是关于(转)window.opener方法的使用 刷新父页面的主要内容,如果未能解决你的问题,请参考以下文章

window.opener.location.reload关闭(打开)新界面,刷新父界面

asp.net 如何 刷新并关闭父页面?

js 刷新父业面

window.open()打开一个子页面,如何在子页面关闭时刷新父页面?

window.open()打开一个子页面,如何在子页面关闭时刷新父页面?

父窗口刷新的问题!