如何使用页面刷新进行AJAX表单提交

时间:2017-11-03 16:05:41

标签: javascript php jquery ajax forms

我有一个HTML表单,可以将数据发布到Laravel / PHP登录页面。

当我使用原生HTML表单提交属性时,如下所示:

<form name='login' class="form-horizontal" role="form" method="POST" action="https://somewebsite.com/login">
   // form here
</form>

我的表单提交正常,一旦验证我就会被发送到新的帐户页面(由action属性链接中的网站指定。

但是,我想在发送此表单之前进行一些javascript处理,所以我想通过jQuery来做。目前,我这样做:

  $("#form").submit(function(){
      $.ajax({
          type: "POST",
          url: liveLink,
          data: dataObj,
          success: function(res, other, other2){
            // Do some javascript stuff in here

            // Then I would like to follow the URL with correct tokens sent back by the PHP page
          }
      });
    });

这可能吗?

1 个答案:

答案 0 :(得分:-1)

你需要删除attr&#34; action&#34;和&#34;方法&#34;在表单标签html中。它可能