你用window.open("xxx.php","","")打开,然后用
opener.reloade();self.close()
来刷新父窗口,关闭当前窗口就行了

解决方案 »

  1.   

    纠正:
    opener.reload();self.close()
      

  2.   

    完了。js都忘光了。真是误人子弟。opener.history.go(0);self.close();
      

  3.   

    在B页的body中加unload="javascript:opener.location.reload(true);"

    在B页的body中加unload="javascript:opener.location.href=opener.location.href;"如果这样还不行,那你就在A页中
    function selfreload(){
    location.reload(true);
    }
    然后在到B页body中加unload="javascript:opener.selfreload();"
      

  4.   

    opener.history.go(0)中,go(0)是表示打开时的当前页吧?
      

  5.   

    history.go(-1)后退1步
    history.go(-2)后退2步
    .................
    history.go(1)前进1步
    .................history.go(0)就是刷新了