A:
  window.open("b.htm")B:
  var mm = window.open("c.htm");
  mm.opener = window.opener;    //传递openerC:
  window.opener.location.reload(); //这里可以访问到 A

解决方案 »

  1.   

    多谢楼上大各位的指点,我知道怎么做了!同时顺便有个问题请教大家:我在客户端使用window.location=strUrl 
    strUrl是客户端生成的某个Url.我的目的是刷新当前窗口的url,可是我发现不能刷新,why?
    同时我使用window.open(strUrl,'_self')也不能刷新!why?
      

  2.   

    self.opener.opener.location.reload();
    //c 刷新a 窗口self.location.replace(strUrl);  //客户端生成的某个strUrl
      

  3.   

    self.location.replace(strUrl); 我试过了不行
    是 不是因为这个窗口本身就是从其他窗口打开的呢!