添加form.submit事件以确保在提交表单之前发布帖子?

时间:2010-09-10 05:26:11

标签: javascript jquery ajax

我有一张表格。我想使用jquery添加一个事件处理程序。

$("form").submit(function blah() {
   $.post('ping-me-please.php', params, function (response) {
       // only submit the form once this goes through!
   });

}

我怎样才能实现这一目标?

2 个答案:

答案 0 :(得分:5)

像这样:

$("form").submit(function (e) {
    var form = $(this);

    if (!form.data('pinged')) {
        e.preventDefault(); // Cancel the submit
        $.post('ping-me-please.php', params, function (response) {
            // only submit the form once this goes through!

            // First we set the data, then we trigger the submit again.
            form.data('pinged', true).submit();
        });
    }
}

答案 1 :(得分:0)

var postWasSent = false;
$("form").submit(function blah() {           
   if (!postWasSent)
   {
      $.post('ping-me-please.php', params, function (response) {
         postWasSent=True;
         $("form").submit();
      });
      return false;
   }

}