Submit two HTML forms in JSP using single submit button with Ajax

前端 未结 3 1149
忘掉有多难
忘掉有多难 2021-01-15 06:20

My page design is such that I have to use two forms that submit on single click and then saved to database and vice verse. I am using this on a JSP page with Struts2 Framewo

3条回答
  •  醉酒成梦
    2021-01-15 07:07

    Found an easy solution to it.

    javascript:

    submitForms = function() {
      $('#form2 :input').not(':submit').clone().hide().appendTo('#form1');
        document.getElementById("form1").submit();
    };
    

    Submit button :

    
    

提交回复
热议问题