如何从ajax回调提交FORM

时间:2017-05-07 09:09:27

标签: javascript jquery ajax

通过我的理解ajax的旅程我想出了这个问题,我不知道如何解决它首先我在我的表中请求数据

load_data();
function load_data(page)  
      {  
           $.ajax({  
                url:"data.php",  
                method:"POST",  
                data:{page:page},  
                success:function(data){  
                     $('#result').html(data);  
                },
                error:function(exception){alert('Exeption:'+exception);}                
           })  
      }

这只是输出的表格

    <table>
        <thead>
            <tr>
              <th>name</th>
              <th>details</th>
              <th>price</th>
              <th></th>
            </tr>
        </thead>
        <tbody id = "result">

这是网络标签

的输出

Response from network tab

响应中有一个按钮我尝试使用此jquery来激活它以提交其表单但这不起作用

  $(document).on('click', '#add_details', function(){  
       $(this).parents("form").submit();
  });

1 个答案:

答案 0 :(得分:0)

使用按钮点击

添加您需要提交的表单的ID
$(document).on('click', '#add_details', function(){  
       $("#myForm1").submit();
});

并使用您的按钮只使用您添加的ID

once