通过我的理解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">
这是网络标签
的输出响应中有一个按钮我尝试使用此jquery来激活它以提交其表单但这不起作用
$(document).on('click', '#add_details', function(){
$(this).parents("form").submit();
});
答案 0 :(得分:0)
使用按钮点击
添加您需要提交的表单的ID$(document).on('click', '#add_details', function(){
$("#myForm1").submit();
});
并使用您的按钮只使用您添加的ID
once