我正在尝试将多个 $.post 发送到单个页面。我需要每个人都发布到更新数据库的页面,然后发布下一个,直到完成。到目前为止,这是我的代码:
$(document).ready(function(){
$("#action").change(function(){
var selectVal = $('#action :selected').val();
if(selectVal == "list-all"){
$(".prelistCheckbox:checked").each(function(index) {
var theValue = $(this).val();
console.log('Values to be passed: ' + theValue);
var form = $('form[id=' + theValue + ']');
console.log(form.serialize());
// $.post(form.attr('action'), form.serialize(), function(data) {
$.post('jqueryPost.php', form.serialize(), function(data) {
$('#results').text(data);
console.log(data);
});
});
}
});
});
我真的不知道如何让它做到这一点。表单是从带有循环的数据库的行中生成的。