AJAX Form Submission in jQuery Mobile

帅比萌擦擦* 提交于 2019-11-30 15:26:37

问题


I'm trying to submit a simple login form via ajax on a jQuery Mobile site but I'm having trouble.

It seems that when I submit the form (via POST), the form parameters are getting added to the url. Not only that, they erase the anchored page I was at before form submission.

For example, I'm on page localhost:8080/myapp/#sign_up

Then I submit the form causing the url to become: localhost:8080/myapp/?email=a@a.com&pass=pass

So if I hit validation errors and click a 'back' button, I don't get returned back to the #sign_up page.

Any ideas?


回答1:


If you handle form submission with a custom submit event handler you can handle validation on the same page:

//bind an event handler to the submit event for your login form
$(document).on('submit', '#form_id', function (e) {

    //cache the form element for use in this function
    var $this = $(this);

    //prevent the default submission of the form
    e.preventDefault();

    //run an AJAX post request to your server-side script, $this.serialize() is the data from your form being added to the request
    $.post($this.attr('action'), $this.serialize(), function (responseData) {

        //in here you can analyze the output from your server-side script (responseData) and validate the user's login without leaving the page
    });
});

To stop jQuery Mobile from running its own AJAX sumbission of your form put this on your form tag:

<form data-ajax="false" action="...">



回答2:


Jaspers solution above worked for me! The only thing I had to adjust was replacing .live with .submit (.live is now deprecated). So now its like this:

$('#form_id').submit(function (e) {

    //cache the form element for use in this function
    var $this = $(this);

    //prevent the default submission of the form
    e.preventDefault();

    //run an AJAX post request to your server-side script, $this.serialize() is the data from your form being added to the request
    $.post($this.attr('action'), $this.serialize(), function (responseData) {

        //in here you can analyze the output from your server-side script (responseData) and validate the user's login without leaving the page
    });
});



回答3:


If you want to submit a form and not use ajax (which is default) you must add 'data-ajax="false"' to your form string:

 <form data-ajax="false" action="test.php" method="POST">


来源:https://stackoverflow.com/questions/8012751/ajax-form-submission-in-jquery-mobile

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!