盾怪网教程:是一个免费提供流行杀毒软件教程、在线学习分享的学习平台!

bootstrap-validator使用详细说明(代码案例)

时间:2024/5/26作者:未知来源:盾怪网教程人气:

[摘要]fields; if (!fields) return false; for (var field in fields) {$errField = $(#errors- ...
fields; if (!fields) return false; for (var field in fields) { $errField = $('#errors-' + field); fieldStatus = $errField.data('status'); if (fieldStatus == 'error') { $errFiePar = $errField.parent(), $totalTip = $errFiePar.find('.totalTip'); if ($totalTip.length) { $totalTip.show(); } else { $errFiePar.append('<span class="totalTip text-left">' + fields[field].message + '</span>'); } } status = status && fieldStatus == 'success'; } return status; } });

需要的css文件: bootstrap-validator-my.css(自定义的一个默认配置文件,是个人写的,非官方文件)
bootstrap-validator-my.css内容如下:

* {    margin: 0;    padding: 0;    box-sizing: border-box;
}input,button {    outline: none;
}ul {    list-style: none;
}/*字体样式*/.text-right {    text-align: right;
}.text-left {    text-align: left;
}.text-center,.center {    text-align: center;
}.bold {    font-weight: bold;
}/*位置样式*/.relative {    position: relative;
}.absolute {    position: absolute;
}.fixed {    position: fixed;
}/*浮动相关*/.float,.float-left {    float: left;
}.float-right {    float: right;
}.clear:after {    content: ".";    display: block;    height: 0;    visibility: hidden;    clear: both;
}.pageWrap {    height: auto;    min-height: 100%;
}/*panel start*/.panel {    border: 1px solid #6AC7DC;    border-radius: 4px;    background: #fff;
}.panel>div:first-child {    border-bottom: 1px solid #6AC7DC;    height: 35px;    line-height: 35px;    border-radius: 4px;
}.panel .panel-head {    padding: 0 20px;    position: relative;
}.panel .panel-head .panel-title {    font-weight: bold;
}.panel .panel-head .panel-btns {    position: absolute;    right: 20px;
}.panel .panel-head .panel-btns span {    border-radius: 5px;    color: #fff;    padding: 2px 8px;
}.panel .panel-head .panel-btns span:hover {    cursor: pointer;
}.panel .panel-head .panel-btns .panel-btn-add {    background: #3686D1;
}.panel .panel-body {    padding: 20px;
}.panel .panel-body .panel-table {    width: 100%;    border-collapse: collapse;    text-align: center;
}.panel .panel-body .panel-table td,.panel .panel-body .panel-table th {    border: 1px solid #E0E0E0;    font-size: 14px;    padding: 0 8px;    font-style: normal;
}.panel .panel-body .panel-table th {    height: 33px;    line-height: 33px;
}.panel .panel-body .panel-table td {    height: 28px;    line-height: 28px;
}/*panel end*//*所有表单元素样式 start*/.form {    display: flex;    justify-content: center;    padding: 20px;
}.form .item-txt,.form .item-sel {    width: 300px;    height: 30px;    line-height: 30px;    border: 1px solid #CCCCCC;    padding: 0 10px;
}.form .item-dis {    background: #E3E3E3;    color: #999999;
}.form .item-dis:hover {    cursor: not-allowed;
}.form .item {    font-size: 0;    position: relative;    margin-bottom: 15px;
}.form .totalTip {    position: absolute;    left: 386px;    top: 0;    width: 235px;    height: 30px;    line-height: 30px;    color: red;
}.form .errors {    width: 235px;    position: absolute;    left: 386px;    top: 0;    border: 1px solid #ddd;    box-shadow: 1px 1px 1px #efefef;    background: #f9f9f9;    padding: 5px 10px;    z-index: 100;
}.form .errors li {    line-height: 20px;    padding-left: 18px;    font-size: 12px;    color: #666;    font-family: Tahoma,Helvetica,"Microsoft Yahei","微软雅黑",Arial,STHeiti;    background: url(reg_icons.png) no-repeat -86px -112px;
}.form .errors .arrow {    position: absolute;    top: 8px;    left: -6px;    height: 0px;    width: 0px;    border-top: 6px solid transparent;    border-right: 6px solid #ddd;    border-bottom: 6px solid transparent;
}.form .errors .arrow:after {    content: '';    position: absolute;    top: -5px;    left: 1px;    border-top: 5px solid transparent;    border-right: 5px solid #f9f9f9;    border-bottom: 5px solid transparent;
}.form .errors li.normal {    background-position: -86px -112px;
}.form .errors li.success {    background-position: -86px -128px;
}.form .errors li.error {    background-position: -86px -144px;    color: red;
}.form .item * {    font-size: 14px;
}.form .item .item-label {    display: inline-block;
}.form .item .item-btn {    height: 30px;    width: 300px;    line-height: 30px;    display: inline-block;    background: #3686D1;    color: #fff;    font-weight: bold;    text-align: center;
}.form .item .item-btn:hover {    cursor: pointer;
}.form .error-cont {    color: gray;    display: inline-block;    text-align: left;    font-size: 12px;    height: 15px;    position: relative;    white-space: nowrap;
}.form .error-cont .icon {    position: absolute;    top: 1px;
}.form .error-cont .tip {    position: absolute;    left: 20px;    font-size: 12px;
}.form .redtip {    color: red;    font-weight: bold;    display: inline-block;    height: 30px;    line-height: 30px;
}/*所有表单元素样式 end*/

需要的img为:

3.png

<!DOCTYPE html><html><head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>bootstrap-validator-my</title>
    <link rel="stylesheet" href="bootstrap-validator-my.css">
    </head><body>
    <div class="panel">
        <div class="panel-head">
        </div>
        <div class="panel-body">
            <form id="defaultForm" role="form" class="form-signin form" action="registerAccount.do" method="post">
                <div class="text-right">
                    <div class="form-group item">
                        <label class="item-label" for="username">用户名:</label>
                        <input class="form-control item-txt" type="text" name="username" id="username" />
                        <ul id="errors-username" data-status="" class="errors" style="display: none;">
                            <span class="arrow"></span>
                        </ul>
                    </div>
                    <div class="form-group item">
                        <label class="item-label" for="ip">ip:</label>
                        <input class="form-control item-txt" type="text" name="ip" id="ip" />
                        <ul id="errors-ip" data-status="" class="errors" style="display: none;">
                            <span class="arrow"></span>
                        </ul>
                    </div>
                    <div class="form-group item">
                        <label class="item-label" for="password">密码:</label>
                        <input class="form-control item-txt" type="password" name="password" id="password" />
                        <ul id="errors-password" data-status="" class="errors" style="display: none;">
                            <span class="arrow"></span>
                        </ul>
                    </div>
                    <div class="form-group item">
                        <label class="item-label" for="newpassword">新密码:</label>
                        <input class="form-control item-txt" type="password" name="newpassword" id="newpassword" />
                        <ul id="errors-newpassword" data-status="" class="errors" style="display: none;">
                            <span class="arrow"></span>
                        </ul>
                    </div>
                    <div class="form-group item">
                        <label class="item-label" for="repassword">确认密码:</label>
                        <input class="form-control item-txt" type="password" name="repassword" id="repassword" />
                        <ul id="errors-repassword" data-status="" class="errors" style="display: none;">
                            <span class="arrow"></span>
                        </ul>
                    </div>
                    <div class="form-group item">
                        <span class="item-btn" type="submit">确认注册</span>
                    </div>
                </div>
            </form>
        </div>
    </div>
    <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://cdn.bootcss.com/bootstrap-validator/0.5.3/js/bootstrapValidator.min.js"></script>
    <script src="bootstrap-validator-default.js"></script>
    <script>

    var config = {        fields: { /*验证:规则*/
            username: { //验证input项:验证规则
                message: 'The username is not valid',                validators: {                    stringLength: {                        min: 6,                        max: 30,                        message: '用户名长度必须在6到30之间'
                    },                    regexp: {                        regexp: /^[a-zA-Z0-9_\.]+$/,                        message: '用户名由数字字母下划线和.组成'
                    },                    notEmpty: {                        message: '用户名不能为空'
                    }
                }
            },            ip: {                message: 'ip无效',                validators: {                    ip: {                        message: 'ip格式不正确'
                    }
                }
            },            password: {                message: '密码无效',                
                validators: {                    pw: {                        // regexp: /.*(?=.*\d)(?=.*[a-zA-Z])(?=.*[~!@#$%^&*_])./,
                        message: '必须包含数字、英文字母、特殊字符'
                    },                    stringLength: {                        min: 8,                        message: '密码长度须大于等于8位'
                    }
                }
            },            newpassword: {                message: '密码无效',                validators: {                    regexp: {                        regexp: /.*(?=.*\d)(?=.*[a-zA-Z])(?=.*[~!@#$%^&*_])./,                        message: '密码没通过'
                    },                    stringLength: {                        min: 8,                        message: '密码长度须大于等于8位'
                    },                    different: { //不能和用户名相同
                        field: 'password', //需要进行比较的input name值
                        message: '新密码不能和旧密码相同'
                    },                    identical: { //相同
                        field: 'repassword', //需要进行比较的input name值
                        message: '新密码和确认密码要一致'
                    }
                }
            },            repassword: {                message: '密码无效',                validators: {                    regexp: {                        regexp: /.*(?=.*\d)(?=.*[a-zA-Z])(?=.*[~!@#$%^&*_])./,                        message: '密码没通过'
                    },                    stringLength: {                        min: 8,                        message: '密码长度须大于等于8位'
                    },                    different: { //不能和用户名相同
                        field: 'password', //需要进行比较的input name值
                        message: '确认密码不能和旧密码相同'
                    },                    identical: { //相同
                        field: 'newpassword', //需要进行比较的input name值
                        message: '新密码和确认密码要一致'
                    }
                }
            }
        }
    };    var $form = $('#defaultForm');
    $form.initBV(config);
    $form.find('.item-btn').click(function(e) {        if($form.valiFields(config.fields)) {            console.log(1)
        }else {            console.log(0)
        }
    });    </script></body></html>

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

相关阅读:

sublime怎样快速的创建html头部代码

JS中的常用函数汇总

HTML5的集合

用<h1>和段落<p> 写一个三毛语录

以上就是bootstrap-validator使用详解(代码实例)的详细内容,更多请关注php中文网其它相关文章!


网站建设是一个广义的术语,涵盖了许多不同的技能和学科中所使用的生产和维护的网站。



关键词:bootstrap-validator运用详细说明(代码案例)




Copyright © 2012-2018 盾怪网教程(http://www.dunguai.com) .All Rights Reserved 网站地图 友情链接

免责声明:本站资源均来自互联网收集 如有侵犯到您利益的地方请及时联系管理删除,敬请见谅!

QQ:1006262270   邮箱:kfyvi376850063@126.com   手机版