javascript刷新父页面的各种方法汇总

前端之家收集整理的这篇文章主要介绍了javascript刷新父页面的各种方法汇总前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

用iframe、弹出子页面刷新父页面iframe

parent.location.reload();

弹出子页面

window.opener.location.reload();

子窗口刷新父窗口

self.opener.location.reload();

刷新以open()方法打开的窗口

window.opener.location.href=window.opener.location.href;

刷新以winodw.showModelDialog()方法打开的窗口

原文链接:https://www.f2er.com/js/57882.html

猜你在找的JavaScript相关文章