JQuery validation in Bootstrap Modal not working

Applying jQuery validation to a modal bootstrap has no effect, it checks all included libraries and their order and notices that they are correct.

  • Bootstrap: version 3.3.1
  • jQuery: version 1.11.1
  • jQuery-validate : version 1.13.1

Chapter Code:

<head>
    <title>Titulo</title>

    <link rel="stylesheet" type="text/css" href="../CSS/StyleSheet.css"/>
    <script type="text/javascript" src="../Bootstrap/js/jquery-1.11.1.min.js"></script>
    <script type="text/javascript" src="../Bootstrap/js/bootstrap.min.js"></script>
    <script type="text/javascript" src="../datepicker/js/bootstrap-datepicker.js"></script>
    <script type="text/javascript" src="../Jquery-Validate/jquery.validate.min.js"></script>
    <script type="text/javascript" src="../Javascript/ActionJS.js"></script>

    <link rel="stylesheet" type="text/css" href="../Bootstrap/css/bootstrap.min.css" media="screen" />
    <link rel="stylesheet" type="text/css" href="../datepicker/css/datepicker.css" media="screen" />

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
</head>

Modal Code (Download HTML without AJAX)

<div class="modal fade" id="login_modal" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
        <div class="modal-dialog modal-lg">
            <div class="modal-content">
                <form class="form-horizontal" id="login-form" action="../PHP/ValidateForm.php" method="get">
                    <div class="modal-header">
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
                        <h4 class="modal-title span7 text-center" id="myModalLabel"><span class="title">Login</span></h4>
                    </div>
                    <div class="modal-body">
                        <div class="col-md-6">
                            <div class="form-group">
                                <label for="input_email" class="control-label col-md-3">Your Email (login)</label>
                                <div class="col-md-9">
                                    <input type="email" class="form-control" id="email" name="email" placeholder="Email">
                                </div>
                            </div>
                            <div class="form-group">
                                <label for="input_password" class="control-label col-md-3">Password</label>
                                <div class="col-md-9">
                                    <input type="password" class="form-control" id="pass" name="pass" placeholder="Password">
                                </div>
                            </div>
                            <div class="checkbox text-center">
                                <label><input type="checkbox" id="remember_me" name="remember_me">Remember me on this computer</label>
                            </div>
                        </div>
                        <div class="form-group text-center">
                            <div class="col-md-6 col-md-offset-3">
                                <button type="reset" class="btn btn-danger">Reset</button>
                            </div>
                        </div>
                    </div>
                    <div class="modal-footer">
                        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                        <button type="submit" class="btn btn-primary" name="login_form_submit" value="Login">Login</button>
                    </div>
                </form>
            </div>
        </div>
    </div>

Changing the tag to the send button of the modal body does not work, and in this video it will be correct.

ActionJS code (validation file)

$(document).ready(function(){
     $("#login-form").validate({
    rules:{
        name:{
            required:true,
            minLength:8
        },
        pass:"required"
    },
    messages:{
        name:{
            required:"Please provide your Login",
            minLength:"Your Login must be at least 8 characters"
        },
        pass:"Please provide your password"
    }
});

});

+4
source share
1 answer

Two problems with your code here ...

rules:{
    name:{  // <- no such element
        required:true,
        minLength:8  // <- no such rule
    },
    pass:"required"
},
  • You do not have such an input element with name="name". Perhaps you meant email.

  • , minLength. , minLength.

. , messages.

DEMO: http://jsfiddle.net/nk3j4mtu/

+3

Source: https://habr.com/ru/post/1569993/


All Articles