<A href="#" onclick="window.location='aa.htm';">连接</A>
试试

解决方案 »

  1.   

    小菜一碟。
    main.htm
    <script>
    window.showModalDialog("test.htm");
    </script>test.htm
    <script>
    name = "win"
    </script>
    <a href="http://www.google.com/" target="win">test</a>
    处理此类问题(连接或提交)的关键在于要显式的给对话框命名(模态和非模态对话框)
    并用target指定目标窗口名
      

  2.   

    xuzuning(唠叨:
    <script>
    name = "win"
    </script>这里的name是谁的name ???
      

  3.   

    谢谢xuzuning(唠叨) ,我现在手头有别的活,有时间的话我会试试
      

  4.   

    我实验了,果然可以,谢谢xuzuning(唠叨)