2015-11-10 129 views
0

我有一个使用JQuery和AJAX提交的HTML表单。Ajax表单提交页面重定向

成功提交后,将加载一个模式,然后重定向到另一个页面。

我想要做的是检查输入的数据中的一个表单字段,然后根据此值重定向。

下面是我的JS文件。我设置了'if'语句,但页面只是重定向到第一个选项,而不管输入的是什么。

magic.js: -

// magic.js 
$(document).ready(function() { 

    // process the form 
    $('form').submit(function(event) { 
     $('.form-group').removeClass('has-error'); // remove the error class 
     $('.help-block').remove(); // remove the error text 

     // get the form data 
     // there are many ways to get this data using jQuery (you can use the class or id also) 
     var formData = { 
      'name'    : $('input[name=name]').val(), 
      'email'    : $('input[name=email]').val(), 
      'superheroAlias'  : $('input[name=superheroAlias]').val() 
     }; 

     // process the form 
     $.ajax({ 
      type  : 'POST', // define the type of HTTP verb we want to use (POST for our form) 
      url   : 'process.php', // the url where we want to POST 
      data  : formData, // our data object 
      dataType : 'json', // what type of data do we expect back from the server 
      encode  : true, 
      success : function showModal() { 
       $("#myModal .modal-content").html(); 
       $('#myModal').modal('show'); 
} 
     }) 
      // using the done promise callback 
      .done(function(data) { 

       // log data to the console so we can see 
       console.log(data); 

       // here we will handle errors and validation messages 
       if (! data.success) { 

        // handle errors for name --------------- 
        if (data.errors.name) { 
         $('#name-group').addClass('has-error'); // add the error class to show red input 
         $('#name-group').append('<div class="help-block">' + data.errors.name + '</div>'); // add the actual error message under our input 
        } 

        // handle errors for email --------------- 
        if (data.errors.email) { 
         $('#email-group').addClass('has-error'); // add the error class to show red input 
         $('#email-group').append('<div class="help-block">' + data.errors.email + '</div>'); // add the actual error message under our input 
        } 

        // handle errors for superhero alias --------------- 
        if (data.errors.superheroAlias) { 
         $('#superhero-group').addClass('has-error'); // add the error class to show red input 
         $('#superhero-group').append('<div class="help-block">' + data.errors.superheroAlias + '</div>'); // add the actual error message under our input 
        } 

       } else { 

        // ALL GOOD! just show the success message! 
        $('form').append('<div class="alert alert-success">' + data.message + '</div>'); 
        if(formData.name="craft") {window.setTimeout(function() { 
     location.href = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6SLZSSYLDRM2A"; 
    }, 3000);} 
        else if(formData.name="business"){window.setTimeout(function() { 
     location.href = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FGXPCRVAXJC8J"; 
    }, 3000);} 
        else{window.setTimeout(function() { 
     location.href = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WH8HB3M9S3GU2"; 
    }, 3000);} 
        /* $("#myModal .modal-content").html('test'); 
       $('#myModal').modal('show');*/ 
        // usually after form submission, you'll want to redirect 
        // window.location = '/thank-you'; // redirect a user to another page 

       } 
      }) 

      // using the fail promise callback 
      .fail(function(data) { 

       // show any errors 
       // best to remove for production 
       console.log(data); 
      }); 

     // stop the form from submitting the normal way and refreshing the page 
     event.preventDefault(); 
    }); 

}); 

我觉得我的变量名是这个问题,但我不能肯定。

回答

2

那么,在 “如果” 的说法应该是==,而不是=

+0

新手的错误!我看了很长时间,只是看不到它!我认为我还在星期一工作模式 – Luke

+0

可以推荐两件事: 1.使用像“val”= var(我没有习惯它......)的反向条件... 2.使用检查代码完整性的IDE – iXCray

0

尝试:

// magic.js 

$(document).ready(function() { 

    // process the form 
    $('form').submit(function(event) { 
     event.preventDefault(); 
     $('.form-group').removeClass('has-error'); // remove the error class 
     $('.help-block').remove(); // remove the error text 

     // get the form data 
     // there are many ways to get this data using jQuery (you can use the class or id also) 
     var formData = { 
      'name'    : $('input[name=name]').val(), 
      'email'    : $('input[name=email]').val(), 
      'superheroAlias'  : $('input[name=superheroAlias]').val() 
     }; 

     // process the form 
     $.ajax({ 
      type  : 'POST', // define the type of HTTP verb we want to use (POST for our form) 
      url   : 'process.php', // the url where we want to POST 
      data  : formData, // our data object 
      dataType : 'json', // what type of data do we expect back from the server 
      encode  : true, 
      success : function showModal() { 
       $("#myModal .modal-content").html(); 
       $('#myModal').modal('show'); 
        if (! data.success) { 

        // handle errors for name --------------- 
        if (data.errors.name) { 
         $('#name-group').addClass('has-error'); // add the error class to show red input 
         $('#name-group').append('<div class="help-block">' + data.errors.name + '</div>'); // add the actual error message under our input 
        } 

        // handle errors for email --------------- 
        if (data.errors.email) { 
         $('#email-group').addClass('has-error'); // add the error class to show red input 
         $('#email-group').append('<div class="help-block">' + data.errors.email + '</div>'); // add the actual error message under our input 
        } 

        // handle errors for superhero alias --------------- 
        if (data.errors.superheroAlias) { 
         $('#superhero-group').addClass('has-error'); // add the error class to show red input 
         $('#superhero-group').append('<div class="help-block">' + data.errors.superheroAlias + '</div>'); // add the actual error message under our input 
        } 

       } else { 

        // ALL GOOD! just show the success message! 
        $('form').append('<div class="alert alert-success">' + data.message + '</div>'); 
        if(formData.name=="craft") {window.setTimeout(function() { 
        location.href = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6SLZSSYLDRM2A"; 
        }, 3000);} 
        else if(formData.name=="business"){window.setTimeout(function() { 
        location.href = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FGXPCRVAXJC8J"; 
        }, 3000);} 
        else{window.setTimeout(function() { 
        location.href = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WH8HB3M9S3GU2"; 
        }, 3000);} 


       } 
} 
     }); 



}); 
}); 
相关问题