in B
window.open("A.asp")in A
<body onload="opener.location.reload()">

解决方案 »

  1.   

    楼上说的我还不太清楚,window.open("A.asp")该放在B页面的什么地方? in A
    <body onload="opener.location.reload()">
    这两行怎样使B页面重新入呢?
      

  2.   

    a 框架name A
    b 框架name B
     a.htm in A when loading refesh b.htm right?
    ok
    in a.htm
    <body onload="parent.frames('B').location.herf='b.htm'">
      

  3.   

    如果A和B页面不属于一个框架集,但A和B有父子关系可以试试下面代码:
    a.htm:
    <input type=button value=button onclick='window.open("b.htm")'>b.htm:
    <body onload='window.opener.location.reload()'>hello!</body>