我有3个页面A页面是主页面A页面中放了一个IframeIframe里嵌套了B页面
点击B页面里的按钮   新打开页面C
C页面操作完成后  需要刷新的页面是A页面  请教下如何操作

解决方案 »

  1.   

    window.parent.parent.location.reload(); 
      

  2.   

    B按钮 window.open('c.html')c.html 操作完成按钮 window.parent.parent.location.reload(); 
      

  3.   

    感觉像绕口令呢,刷新然后关闭当前页面
    window.opener.location.reload();window.close();
      

  4.   

    接收Dilaog的返回值并且刷新页面
    window.top.dialogArguments.location=window.top.dialogArguments.location
      

  5.   

    string curtime = DateTime.Now.Ticks.ToString();
    string script = "<script>window.parent.A页面位置.location.href = 'A.aspx?curtime =" + curtime + "'</script>";
    Response.Write(script);