http://www.csdn.net/Develop/read_article.asp?id=15113

解决方案 »

  1.   

    window.opener.location = "*.asp";
    window.close();
      

  2.   

    http://expert.csdn.net/Expert/topic/1492/1492815.xml?temp=.5640833
      

  3.   

    window.opener.location.reload();//刷新父窗口
    window.close();//关闭本窗口
      

  4.   

    在父窗口
    function doModal(url){
    win=window.showModalDialog(url,0,"dialogWidth:500
    px;dialogHeight:500px;status:no;help:no;");
    if (win=="T")
     {
     document.location.reload(ture); 
     }
    }
    在模式窗口 
    window.onunload()
    {
    window.returnValue="T";
    }
      

  5.   

    window.showModalDialog();
    self.reload();