这个应该是用js实现的吧
可以用window.opener来引用原先的窗口

解决方案 »

  1.   

    信息可以通过?info=的形式传递到你打开的网页
      

  2.   

    用js写,先open一个你指定的窗口,然后把你所作的操作指向新窗口
    <script language="javascript">
    newWindow=window.open("yourURL","name","窗口的属性");
    newWindow=document.writeln("你要在新窗口中显示的内容");
    newWindow=document.elements.method;
    ...
    </script>
      

  3.   

    楼上的好象不太对吧
    var newWindow=window.open("yourURL","name","窗口的属性");
    newWindow.document.open()
    newWindow.document.write("asdfasdf")
    newWindow.document.close()
      

  4.   

    to crabyan(风行) <script language="javascript">
    newWindow=window.open("yourURL","name","窗口的属性");
    newWindow=document.writeln("你要在新窗口中显示的内容");
    newWindow=document.elements.method;
    //******************关键在document.elements.method***********************
    ...
    </script>