refreshParent

function refreshParent() {
window.opener.frames['subframe'].location.href = window.opener.frames['subframe'].location.href;
if (window.opener.progressWindow)
window.opener.progressWindow.close();
window.close();
}


function refreshParent()
{  
  window.opener.frames['subframe'].location.reload();
}

function refreshParent()
{
   window.perant.frames['subframe'].document.location.reload();
}
原文地址:https://www.cnblogs.com/meiproject/p/959024.html