<form action="a.asp" target="_blank">

解决方案 »

  1.   

    <form action="" name="form1">
    <input type="radio" value="a.asp" checked name="R1" onclick="document.form1.action=this.value">
    <input type="radio" value="b.asp" checked name="R2" onclick="document.form1.action=this.value"><input type="submit" value="提交">
    </form>
      

  2.   

    <form name="form1" method="post" action="">
    其中有些单选框.投票系统
    <input type="button" value="提交" onclick="javascript:window.open('a.asp');form1.submit();">
    </form>
      

  3.   

    我的意思是表单的内容提交到window.open的那个网页。
      

  4.   

    <form name="form1" method="post" action="">
    <input type="submit" value="submit">
    </form>
    <script language="javascript">
    var obj = window.open("b.htm","openWins","");
    document.all.form1.target = "openWins";
    </script>
      

  5.   

    oNewWindow=window.open([sURL] [, sName] [, sFeatures] [, bReplace])其中sName参数: Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a FORM or an A element. 
    In Internet Explorer 5 and later, specifying the value _search opens sURL in the browser's search pane.
      

  6.   

    open页面和action页面一样不就可以了
      

  7.   

    先把内容付给某些变量,然后参数传递a.asp?a=1&b=1
      

  8.   

    如果action和open一样的话
    数据没法传送出去的.