3

我有一个带有 POST 方法的表单和另一个页面的操作。

在表单中,我有另一个表单,我需要使用不同的操作提交,但它使用主表单操作提交。

这是我的第二种形式:

<script>
    function formSubmit()
    {
        document.getElementById("invoices_form").submit();
    }
</script>

<form action="resend_multiple_invoices.php" name="invoices_form" method="post">
    <input type="button" onclick="formSubmit()" value="Send Invoices" />
</form>

我怎样才能让它提交第二个表格而不是主要表格?

4

3 回答 3

10

您不能(普遍)将嵌套表单与其父表单分开提交。嵌套表单是W3C 禁令中所述的无效 HTML 。

为了解决您的问题,我建议您使用以下两种不同的形式:

<script>
    function invoicesFormSubmit()
    {
       document.getElementById("invoices_form").submit();
    }

    function otherFormSubmit()
    {
       document.getElementById("other_form").submit();
    }
</script>

<form action="resend_multiple_invoices.php" name="invoices_form" method="post">

    //
    // Input fields go here
    //

    <input type="button" onclick="invoicesFormSubmit()" value="Send Invoices" />
</form>

<form action="other_method.php" name="other_form" method="post">

    //
    // Input fields go here
    //

    <input type="button" onclick="otherFormSubmit()" value="Other Method" />
</form>
于 2013-10-09T16:41:33.037 回答
8

您可以在输入字段中使用“表单”属性,然后混合所有输入。通过提交,他们指的是正确的表格。

<form action="" method="post" id="form1"></form>
<form action="" method="post" id="form2"></form>

<input name="firstname" form="form1">
<input name="firstname" form="form2">

<button type="submit" name="submit" form="form1">Save form 1</button>
<button type="submit" name="submit" form="form2">Save form 2</button>

另请参阅https://www.w3schools.com/tags/att_input_form.asp

于 2020-07-20T11:27:32.297 回答
0

JQuery.ajax 和 html 用于通过 ajax 验证“内部表单”,然后提交整个表单。我在这两种情况下都使用 ajax 来显示 controller.php 文件和提交 id 的用途。通过使用类而不是 id 作为 Jquery 选择器,您还可以拥有一个由多个隔离部分组成的内部表单。

<form>
    <input />
    <textarea />
    <select /> <!-- etc. -->
    <section id="verify">
        <input />
        <textarea />
        <select /> <!-- etc -->
        <button type="button">submit</button>
        <!-- eg. sub-submission verifies data in section -->
    </section>
    <select />
    <input />
    <input type="submit" value="submit" />
</form>
<script>
$(document).ready(function() {

   $("#verify button").on ('click', verify);
   $('form').submit (formSend);

   function verify (){
       // get input data within section only (ie. within inner form)
       var postData = $('#verify').filter(':input' ).serializeArray();
       postData.push ({name:"submitId", value:'verify'});
       var request = $.ajax ({
          type: "POST",
          url: "controller.php",
          data: postData,
          error: function (xhr, status, message){
             alert (status);
          }
       });
   }
   function formSend (){
       // get input data within entire form
       var postData = $(this).serializeArray();
       postData.push ({name:"submitId", value:'send'});
       var request = $.ajax ({
          type: "POST",
          url: "controller.php",
          data: postData,
          error: function (xhr, status, message){
             alert (status);
          }
       });
   }
});
</script>
于 2017-10-06T05:53:12.527 回答