使用jQuery Validator

时间:2015-12-09 03:38:31

标签: jquery jquery-validate

我在html表单中使用 jQuery验证器插件

客户端脚本 Java Script / jQuery

服务器端脚本 PHP

我先解释一下表格。我的表格包含:

a)仅接受电子邮件ID

的文本字段

b)添加评论的textarea。

c)输入用户姓名

的文本字段

d)输入手机号码的文本字段(仅接受号码)

a) b)是我表格的永久居民。无论发生什么,它们都会永远存在。他们就像家人一样。

c) d)是暂时的。它们的存在取决于 a)。那是电子邮件ID。

如果用户输入的电子邮件ID不包含在数据库中, c) d)就会生效。用户必须输入用户名和手机号码,并且需要验证所有四个字段。如果不是,则仅验证前两个字段。我在这里搞怪了。

我正在使用客户端的jQuery验证器插件验证所有这些字段。服务器端也有验证。我不会去做进入那里。我们暂时跳过它。

要查看存在的电子邮件,我使用插件的远程功能。我尝试了两种方法来打开/关闭c)和d)的验证规则,并且两者都失败了。 :)

<form role="form" id="product_description_form" name="product_description_form" method="POST" action="place_order_action.php" >
    <div class="col-md-6 col-sm-6 title bg-black">
        <div class="form-group">
            <input type="text" id="email_id" name="email_id"  class="form-control" placeholder="Email Address">
        </div>

        <div class="form-group">
            <textarea type="text" id="product_description" name="product_description"  class="form-control" placeholder="Comments"></textarea>
        </div>

        <div id="fullname_div" class="form-group" style="display:none;">
            <input type="text" id="full_name" name="full_name"  class="form-control" placeholder="Your Full Name">
        </div>

        <div id="mobilenum_div" class="form-group" style="display:none;">
            <input type="text" id="mob_num" name="mob_num"  class="form-control" placeholder="Contact Number">
        </div>

        <div class="col-md-12">
            <input type="submit" name="submit" id="finish" value="CONFIRM NOW" class="btn btn-primary" />
        </div>
    </div>
</form>

最初我保留手机号码和名称div隐藏。如果电子邮件ID不匹配,我会向用户显示电子邮件ID。此时,名称和移动字段的类型将从隐藏更改为文本。否则,类型仍然隐藏。我在哪里听到隐藏的字段没有得到验证。这就是我走这条路的原因。

我想起初做个小提琴。但是,我正在使用遥控器,所以它有点不合适,你知道。也许

此处 第一种方法 我试过了。

$(document).ready(function() {
    $('#product_description_form').validate({
        rules: {
            email_id: {
                email: true,
                required: true,
                remote: {
                    url: "checkemail_exist.php",
                    type: "post",
                    dataType: 'html',
                    data: {
                        email_id: function() {
                            return $("#email_id").val();
                        }
                    },
                    success: function(dataa) {
                        var condition = dataa.trim();

                        //Invalid Data              
                        if (condition == "2") 
                        {
                            remove_validation();          
                            document.getElementById('email_id').value = '';
                            document.getElementById('mobilenum_div').style.display = 'none';
                            document.getElementById('fullname_div').style.display = 'none';
                            document.getElementById('mob_num').value = '';
                            document.getElementById('full_name').value = '';
                            alert('Please enter a valid email id.');
                        }
                        //Existing User
                        else if (condition == "1") 
                        {
                            remove_validation();           
                            document.getElementById('mobilenum_div').style.display = 'none';
                            document.getElementById('fullname_div').style.display = 'none';
                            document.getElementById('mob_num').value = '';
                            document.getElementById('full_name').value = '';
                            document.getElementById('mob_num').type = 'hidden';
                            document.getElementById('full_name').type = 'hidden';
                            alert('We will contact you.');
                        }
                        //New User
                        else if (condition == "3") 
                        {
                            add_validation();
                            document.getElementById('mob_num').type = 'text';
                            document.getElementById('full_name').type = 'text';
                            document.getElementById('mobilenum_div').style.display = 'block';
                            document.getElementById('fullname_div').style.display = 'block';
                            alert('New User.');
                        } 
                        else 
                        {
                            remove_validation();
                            document.getElementById('email_id').value = '';
                            document.getElementById('mobilenum_div').style.display = 'none';
                            document.getElementById('fullname_div').style.display = 'none';
                            document.getElementById('mob_num').value = '';
                            document.getElementById('full_name').value = '';
                        }
                    }
                }

            },
            product_description: {
                required: true,
                minlength: 10
            }

        },
        highlight: function(element) {
            $(element).closest('.form-group').removeClass('success').addClass('error');
        },
        success: function(element) {
            element.text('').addClass('valid')
                .closest('.form-group').removeClass('error').addClass('success');
        }
    });

function add_validation()
{
    $("#full_name").rules("add", "required");
    $("#mob_num").rules("add", {number: true, required:true, minlength: 10, maxlength:12 });
}

function remove_validation()
{
    $("#full_name").rules("remove", "required");
    $("#mob_num").rules("remove", {number: true, required:true, minlength: 10, maxlength:12 });     
}

}); 
猜猜是什么?它没有用。我知道,我知道我正在混合使用jQuery和JavaScript。但这只是一个演示。 无论如何,在我的第一个方法成功失败后,我尝试使用插件的depends属性。总是有B计划:D

此处 第二种方法 我尝试过:

$(document).ready(function() {
    //Function to validate

    $('#product_description_form').validate({
        rules: {
            email_id: {
                email: true,
                required: true,
                remote: {
                    url: "checkemail_exist.php",
                    type: "post",
                    dataType: 'html',
                    data: {
                        email_id: function() {
                            return $("#email_id").val();
                        }
                    },
                    success: function(dataa) {
                        var condition = dataa.trim();

                        //Invalid Data              
                        if (condition == "2") 
                        {
                            document.getElementById('email_id').value = '';
                            document.getElementById('mobilenum_div').style.display = 'none';
                            document.getElementById('fullname_div').style.display = 'none';
                            document.getElementById('mob_num').value = '';
                            document.getElementById('full_name').value = '';
                            alert('Please enter a valid email id.');
                        }
                        //Existing User
                        else if (condition == "1") 
                        {
                            document.getElementById('mobilenum_div').style.display = 'none';
                            document.getElementById('fullname_div').style.display = 'none';
                            document.getElementById('mob_num').value = '';
                            document.getElementById('full_name').value = '';
                            document.getElementById('mob_num').type = 'hidden';
                            document.getElementById('full_name').type = 'hidden';
                            alert('We will contact you.');
                        }
                        //New User
                        else if (condition == "3")
                        {
                            document.getElementById('mob_num').type = 'text';
                            document.getElementById('full_name').type = 'text';
                            document.getElementById('mobilenum_div').style.display = 'block';
                            document.getElementById('fullname_div').style.display = 'block';
                            alert('New User.');
                        } 
                        else 
                        {
                            document.getElementById('email_id').value = '';
                            document.getElementById('mobilenum_div').style.display = 'none';
                            document.getElementById('fullname_div').style.display = 'none';
                            document.getElementById('mob_num').value = '';
                            document.getElementById('full_name').value = '';
                        }
                    }
                }

            },
            product_description: {
                required: true,
                minlength: 10
            },
            full_name: 
            {
                required: 
                {
                    depends: function(element) 
                    {
                        if (condition == "3") 
                        {
                            return true;
                        } 
                        else
                        {
                            return false;
                        }
                    }
                }

            },
            mob_num: 
            {
                required:
                {
                    depends: function(element) 
                    {
                        if (condition == "3") 
                        {
                            return true;
                        }
                        else 
                        {
                            return false;
                        }
                    }
                },
                number: true,
                minlength: 10,
                maxlength: 12
            }

        },
        highlight: function(element) {
            $(element).closest('.form-group').removeClass('success').addClass('error');
        },
        success: function(element) {
            element.text('').addClass('valid')
                .closest('.form-group').removeClass('error').addClass('success');
        }
    });

}); 

有时候B计划也会失败。所以我们找到了一个计划C.就是这样。 我犯了什么错误?格拉西亚斯。

远程方法工作正常。我甚至得到了checkemail_exist.php页面的回复,并检查了成功内部的if-else条件。但是没有相应地添加和删除验证规则。

1 个答案:

答案 0 :(得分:0)

您正在以错误的方式接近它,您可以隐藏元素,然后不会应用验证规则。

因此,您可以设置验证规则,然后可以使用更改事件处理程序,该处理程序可以根据电子邮件是否存在来设置这些元素的显示。

&#13;
&#13;
jQuery(function($) {
  $('#product_description_form').validate({
    rules: {
      email_id: {
        email: true,
        required: true,
      },
      product_description: {
        required: true,
        minlength: 10
      },
      full_name: {
        required: true
      },
      mob_num: {
        number: true,
        required: true,
        minlength: 10,
        maxlength: 12
      }
    }
  });

  $('#email_id').change(function() {
    //based on the value set the display state of those fields
    //as a temp implementation we will just toggle the display
    //using timeout to simulate a async ajax
    setTimeout(function() {
      $('#mobilenum_div, #fullname_div').toggle();
    }, 500);
  });
});
&#13;
<link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.css" rel="stylesheet" />
<script src="http://code.jquery.com/jquery-1.11.3.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.13.1/jquery.validate.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.13.1/additional-methods.js"></script>
<form role="form" id="product_description_form" name="product_description_form" method="POST" action="place_order_action.php">
  <div class="col-md-6 col-sm-6 title bg-black">
    <div class="form-group">
      <input type="text" id="email_id" name="email_id" class="form-control" placeholder="Email Address">
    </div>

    <div class="form-group">
      <textarea type="text" id="product_description" name="product_description" class="form-control" placeholder="Comments"></textarea>
    </div>

    <div id="fullname_div" class="form-group" style="display:none;">
      <input type="text" id="full_name" name="full_name" class="form-control" placeholder="Your Full Name">
    </div>

    <div id="mobilenum_div" class="form-group" style="display:none;">
      <input type="text" id="mob_num" name="mob_num" class="form-control" placeholder="Contact Number">
    </div>

    <div class="col-md-12">
      <input type="submit" name="submit" id="finish" value="CONFIRM NOW" class="btn btn-primary" />
    </div>
  </div>
</form>
&#13;
&#13;
&#13;