<form ... target="_blank" ...>

解决方案 »

  1.   

    你可以用参数提交过去 window.open(".asp?v=123")
      

  2.   

    window.open("", "Popup", "");
    form1.action="下一页面.jsp";
    form1.target="Popup";
    form1.submit();
      

  3.   

    <form action="http://sina.com.cn" target="newwin">
    <input type="submit" onclick='window.open("","newwin","","")'></form>
      

  4.   

    传递参数:window.open("*.jsp?p=1");获得参数:String str=request.getParameter("p");
    显示参数:<%=str%>
      

  5.   

    http://www.csdn.net/Develop/read_article.asp?id=15113