AJAX: Submitting a form without refreshing the page

前端 未结 8 2002
感动是毒
感动是毒 2020-11-30 11:43

I have a form similar to the following:

8条回答
  •  一生所求
    2020-11-30 12:29

    You haven't provided your full code, but it sounds like the problem is because you are performing the $.post() on submit of the form, but not stopping the default behaviour. Try this:

    $('#myForm').submit(function(e) {
        e.preventDefault();
        $.post('mail.php', $('#myForm').serialize());
    });
    

提交回复
热议问题