答案 0 :(得分:1)
使用AJAX,尝试将表单提交到一个网址,其成功处理提交到下一个域,依此类推。
例如
$.ajax({
type: "GET",
data: "id="+id+"&id-other="+id-other, //Setting the values for submit.
url: "URL1.php"
}).done(function(data){
$("#div").html(data);
$.ajax({
type: "GET",
data: "id_1="+id+"&id_2="+id_2,
url:"URL2.php"
}).done(function(data){
//Do whatever you want to after success.
});
});