0

フォームバリデーターの検証を「パス」するのに問題があり、停止して処理を開始しません。処理する必要がある場合、「入力する必要があります:」と表示されます

何が間違っている可能性がありますか?

フィデ

Jクエリ:

  $("form").submit(function (e) {
  e.preventDefault(); // This will prevent the form submission
  var response = ""; 
  var missing = ""; 
  $('#submit-holder').find('input').each(function(){
     if ($(this).val() == '') {
     missing += $('label[for="' + this.id + '"]').html() + " | ";
     empty_fields = true;     
     missing_fields = true;
     }    

     else if ($(this).val() != '') {
     empty_fields = false;
         $('.alert').hide();  
     }

     }); 

     response += "* <strong>You need to fill out:</strong> " + missing;

     if(!$('#user_terms').is(':checked')) 
     { 
     response += "<br>* You need to accept the terms and conditions to continue";
     } 

     var email = $('[name="txtEmail"]').val();

     if(IsEmail(email)==false){
          valid_email = false;
          response += "<br><strong>* The e-mail address you've entered is invalid</strong>";
     }

     response_message(response);

     if(!missing_fields && valid_email !== false &&     $('#user_terms').is(":checked")) {

     $('.alert').hide()


 }
    });

// Functions:
 function IsEmail(email) {
 var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
 if(!regex.test(email)) {
   return false;
 }else{
   return true;
 }
}

function response_message(response) {
$('.alert').addClass('alert-danger');
$('.alert').fadeIn();          
$('.error_message').html(response);
}       
4

3 に答える 3

0

その他のエラー

フィドル

if (missing) response += "* <strong>You need to fill out:</strong> " + missing;



if (IsEmail(email) == false) {
    valid_email = false;
    response += "<br><strong>* The e-mail address you've entered is invalid</strong>";
}
else valid_email = true; // missing

response_message(response);

if (!missing_fields && valid_email && $('#user_terms').is(":checked")) {
于 2013-08-22T12:28:50.173 に答える
0

セレクタエラーです。

作業バージョンは次のとおりです: http://jsfiddle.net/SBYQ5/18/

と交換$('#submit-holder').find('input').each(function () {するだけ$('form').find('input').each(function () {

または - 代わりに -submit-holderフォーム ID として追加します。

さらに、いくつかの var 宣言がありませんでした。

于 2013-08-22T12:20:48.473 に答える