window.opener.location.reload();</慕白兄>

解决方案 »

  1.   

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>子父窗口的操作</title>
    </head>
    <body>
    <script>
    var win=null;
    function op()
    {
    win=window.open("about:blank","win","width=200,height=200");

    win.document.write("<input type='button' value='刷新你父窗口' onclick='window.opener.location.reload()'>");
    }
    </script>
    <input onclick="op()" value="打开窗口" type="button">

    </body>
    </html>