<form name="form1" method="post" action="myjsp.jsp" target="_blank">
</form>

解决方案 »

  1.   

    如果要设定打开窗口的样子<form name="form1" method="post" action="myjsp.jsp" target="popop" onsubmit="window.open('','','status')">
    </form>
      

  2.   

    还是看看我的代码吧.http://www.csdn.net/expert/topic/673/673481.xml?temp=.1550409
      

  3.   

    <form name="form1" method="post" action="javascript:newOpen('myjsp.jsp')" target="_blank">
    <input type=submit value=dddd>
    <script language=javascript>
    function newOpen() {
        window.open (url, "_blank", "top=0, left=0, width=820, height=560, toolbar=no, status=no, menubar=no, resizable=no, scrollbars=yes");
    }
    </script>
    </form>
      

  4.   

    <form name="form1" method="post" action="javascript:newOpen('myjsp.jsp')" target="_blank">
    <input type=submit value=dddd>
    <script language=javascript>
    function newOpen(url) {
        window.open (url, "_blank", "top=0, left=0, width=820, height=560, toolbar=no, status=no, menubar=no, resizable=no, scrollbars=yes");
    }
    </script>
    </form>
      

  5.   

    你的意思是提交到新打开的窗口里面吧..
    应该这么做
    <form name="form1" action="targer.asp" target="hello" onsubmit="Submit()">
    function Submit(){
    self.event.returnValue=false;
    self.open("","hello","width=500,height=500;scrollbars=yes");
    form1.submit();
    }