使用页面重定向ajax发布表单数据

时间:2018-07-24 12:55:33

标签: javascript ajax

我有一个表格,在提交时使用AJAX,并将其数据发布到reg1.php。我希望它对发布的数据进行一些处理,然后重定向到页面以使用它。

当我重定向之后,如何将发布的数据与其一起发布到list.php?
或者还有另一种方法吗?

<script>
$(document).ready(function () {
  $(".loginform").submit(function() {
    data = $("#loginform").serialize();
    $.ajax({
      type: "POST",
      url: "reg1.php",
      data: data,
      success: function(result) {
          if (result == 'success') {

            //$('.output_message').text('Message Sent!');
            //$('#loader').hide();
            alert("SUCCESS");
                window.location.replace("list.php");
          } else {
            //$('.output_message').text('Error Sending email!');
            alert("NO SUCCESS");
            //$('#loader').hide();
          }
      }
    });

    return false; 
  });
});
</script>

0 个答案:

没有答案