JQuery发布回调函数

时间:2016-10-25 09:30:55

标签: php jquery

我想在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仅在$.postindex.php调用,因为它不会将数据发布到users2.php

我该如何解决这个问题?或者我错过了什么?

1 个答案:

答案 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() });
  }
});