目录
2.1打开新页面 - window.open方法打开的新页面
一、场景说明
父页面打开子页面,子页面操作完成后,需要刷新父页面
二、功能作用及效果预览
分以下两种情况:
2.1打开新页面 - window.open方法打开的新页面
if (window.opener != undefined && window.opener != null) {
window.opener.location.reload();
}
2.2弹窗(包括iframe)
第一种:
if (window.parent != undefined && window.parent != null) {
window.parent.location.reload();
}
第二种:
if(top.window.upload){
top.window.upload.frames.location.reload();
}