说过很多次了,B放进模态对话框的iframe或者frame里面

解决方案 »

  1.   

    楼主有mail没? 我发一个带iframe提交的程序给你,你参考一下:)
      

  2.   

    在B中写<script>window.name="PageB";</script>
    在B的表单提交前设目标窗口就可以了。写在form的target是没用的。
    <form onsubmit="this.form.target='PageB';return true;">
    </form>
      

  3.   

    谢谢大家的支持,我的mail是[email protected]
      

  4.   

    我是要将B提交到C页面,然后再返回,用
    <form onsubmit="this.form.target='PageB';return true;">
    </form>
    不可以啊
      

  5.   

    <base target="_self">不认就用
    <script>window.name="myWindow";</script>
    <base target="myWindow">