如何提交有关Ajax成功的表单:

时间:2013-02-25 11:16:39

标签: javascript jquery ajax

我正在尝试使用jQuery验证输入。如果输入已经过验证,并且ajax返回success那么我需要允许表单提交。我使用e.preventDefault

阻止提交

我的剧本是:

$("#spsignin").submit(function(e){
    if (e.preventDefault) { 
        e.preventDefault(); 
    } else { 
        e.returnValue = false;
    }
    var uname = $("input#name").val();
    var pass = $("input#password").val();

    $.ajax({
        type: "POST",
        url: "Login",
        data: 'uname=' + encodeURIComponent(uname) + '&' + 'pass=' 
                       + encodeURIComponent(pass),
        dataType: "json",
        success: function( data, textStatus, jqXHR) {
            if (data == true) {
                $("#spsignin").submit();
            } else { //display error message
                $("#error").show(1500).css({visibility: "visible"});
                $("#error").append("<b>Invalid Username/Email or Password</b>");
            }
        },
        //If there was no resonse from the server
        error: function(jqXHR, textStatus, errorThrown) {
            console.log("Something really bad happened " + textStatus);
            $("#error").html(jqXHR.responseText);
        },
    });

success上,它会执行提交操作,但会重复执行操作。表示Firebug在其控制台中显示post个请求的数量。还有post个请求响应的数量。

形式是:

<form action="Signin" method="get" id="spsignin">
    <input type="text" name="uname" class="text validate[required]" 
        id="name" placeholder="Username"/>
    <input type="password" name="pass" class="text validate[required]" 
        id="password" placeholder="Password"/>
    <input type="submit" value="" id="memberlogin"/>
</form>

请有人告诉我如何在ajax success上提交表单...谢谢......

1 个答案:

答案 0 :(得分:3)

如果输入已经过验证,那么您可以登录用户,使用相同的代码创建会话并重定向到成功回调中的相应页面,例如

...
success: function( data, textStatus, jqXHR) {
  if(data==true) {
   //redirect to loggedin page
   location.href = "url_to_your_loggedin_page";               
  }