http://huobazi.cnblogs.com/archive/2004/04/06/RefreshOrReloadParentWindowWithoutConfirm.html

解决方案 »

  1.   

    window.opener.location.reload()
    这种方式刷新的时候会有一个提示,我想不要种种提示,又没有方法阿
      

  2.   

    to:http://huobazi.cnblogs.com/archive/2004/04/06/RefreshOrReloadParentWindowWithoutConfirm.html
    这篇帖子上的方案并没有最终解决问题。如果打开子窗口之后;父窗口又有所动作(就是和服务器交互一次),然后再执行子窗口刷新父窗口,仍然会出现提示的
      

  3.   

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

  4.   

    window.opener.location=window.opener.location;
    我上次也是一样的,就这样解决了