i write it in javascript:var fm0 = document.forms[0];
var fm1 = document.forms[1];
fm0.action = "next.jsp"
fm1.action = "next.jsp"
fm1.submit();
fm0.submit();but it doesn't work.only one of the form submit.  

解决方案 »

  1.   

    i write it in javascript:var fm0 = document.forms[0];
    var fm1 = document.forms[1];
    fm0.action = "next.jsp"
    fm1.action = "next.jsp"
    fm1.submit();
    fm0.submit();but it doesn't work.only one of the forms submit. 
    don't tell me put them into one form,i can't.   
      

  2.   


    have a try!<from name=form1 action="next.jsp" onSubmit="Javascript:document.form2.submit()">
    <form><from name=form2 action="next.jsp" >
    <form>
      

  3.   

    no way.
    你只有把两个form合成一个才行。
      

  4.   

    You can't do that!It doesn't work if you submit two forms at one time,only the second form works.Remember!
      

  5.   

    :( another question:
    <form>
    <select name="sel" SIZE=6 MULTIPLE STYLE=width:300>
    <option value="1">11
    <option value="2">22
    </select>
    ...
    </form>How can i get the all the values of the select when the form submits ?here i want get "1" and "2" or even more