http://fengpeng.javaeye.com/blog/93919 此时在子窗口做了某些操作要刷新父窗口,可以用window.opener.document.location.reload();来刷新父窗口. 注意:有时候用上面的方法刷新父页面的时候会出现个“重试”跟 “取消”的对话框!所以用以下代码可以解决: window.opener.location.href=window.opener.location.href; |
http://fengpeng.javaeye.com/blog/93919 此时在子窗口做了某些操作要刷新父窗口,可以用window.opener.document.location.reload();来刷新父窗口. 注意:有时候用上面的方法刷新父页面的时候会出现个“重试”跟 “取消”的对话框!所以用以下代码可以解决: window.opener.location.href=window.opener.location.href; |