我想在jQuery中发布callback
函数的数据:
// in my "index.php"
$.post('users.php', { user : the_users_name } ,function(data) {
$('body').html(data)
}
在users.php
我想将数据发布到另一个脚本而不加载users.php
,如下所示:
$.post('users2.php', { date_of_birth : $(".d_of_b_div").val() }
现在users.php
仅在$.post
中index.php
调用,因为它不会将数据发布到users2.php
。
我该如何解决这个问题?或者我错过了什么?
答案 0 :(得分:0)
在index.php
$.ajax({
url: 'users.php',
method: 'post',
data: { user : the_users_name },
success: function(data) {
$('body').html(data)
},
complete: function() {
// use complete callback to call users2.php
// this is only called after success and error callbacks are executed
$.post('users2.php', { date_of_birth : $(".d_of_b_div").val() });
}
});