为了账号安全,请及时绑定邮箱和手机立即绑定

引导验证器在我的代码中不起作用(没有抛出错误),但在JSFiddle上工作

引导验证器在我的代码中不起作用(没有抛出错误),但在JSFiddle上工作

阿晨1998 2022-08-04 17:02:32
当我尝试在我的和点击按钮内使用相同的代码时,它不起作用。代码如下:index.htmlRequest Data<!DOCTYPE html><html><head><meta content="text/html;charset=utf-8" http-equiv="Content-Type"><meta content="utf-8" http-equiv="encoding"><link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"><link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-validator/0.4.5/css/bootstrapvalidator.min.css" rel="stylesheet"><script src="https://code.jquery.com/jquery-3.4.0.min.js"></script><script src='http://cdnjs.cloudflare.com/ajax/libs/bootstrap-validator/0.4.5/js/bootstrapvalidator.min.js'></script><script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script><script type="text/javascript">        //BEGIN FORM Validations        $('#validateForm').bootstrapValidator({            feedbackIcons: {                valid: 'glyphicon glyphicon-ok',                invalid: 'glyphicon glyphicon-remove',                validating: 'glyphicon glyphicon-refresh'            },            fields: {                patientSets: {                    validators: {                        notEmpty: {                            message: 'Please select a patient set'                        }                    }                },                titleOfResearchProject: {                    validators: {                        stringLength: {                            min: 5,                            message: 'Please Enter the title with minimum 5 letters length'                        },                        notEmpty: {                            message: 'Please Enter title of your project'                        }                    }                },以下是上述页面的屏幕截图,该页面位于XAMPP的htdocs文件夹中。index.htmlpublic开发人员的控制台未显示任何错误,如下所示;
查看完整描述

2 回答

?
鸿蒙传说

TA贡献1865条经验 获得超7个赞

您的代码有一些断开的链接,并且您没有在文档“ready”上初始化验证函数,也不应该在对象加载之前初始化验证器。我已经在下面修复了这些问题:validateForm



    <!DOCTYPE html>

    <html>

    <head>

    <meta content="text/html;charset=utf-8" http-equiv="Content-Type">

    <meta content="utf-8" http-equiv="encoding">

    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <!-- fixed broken link -->

    <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-validator/0.4.5/css/bootstrapvalidator.min.css" rel="stylesheet">

    <script src="https://code.jquery.com/jquery-3.4.0.min.js"></script>

    <script src='http://cdnjs.cloudflare.com/ajax/libs/bootstrap-validator/0.4.5/js/bootstrapvalidator.min.js'></script>

    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <!-- fixed broken link -->


    </head>

    <body>

    <div id="wrapper">


        <div id="page-wrapper">

            <div class="container-fluid">

                <!-- Page Heading -->

                <div class="row" id="main" >


                    <!-- BEGIN Bootstrap form testing-->

                    <form class="form-horizontal" id="validateForm" method="POST" onsubmit="return false">

                        <div class="row">

                            <div class="col-md-offset-1 col-md-4">


                                <div class="form-group">

                                    <label class="control-label">Select your patient sets:</label>

                                    <select name="patientSets" class="form-control" >

                                        <option value=" " >Please select patient set</option>

                                        <option>PS1</option>

                                        <option>PS2</option>

                                    </select>

                                </div>




                                <div class="form-group">

                                    <label class="control-label">Description of research project:</label>

                                    <textarea class="form-control" name="descriptionOfResearchProject" placeholder="Enter your description here...."></textarea>

                                  </div>



                            </div>

                            <div class="col-md-offset-1 col-md-4">

                                <div class="form-group">

                                    <label class="control-label">Title of your research project:</label>

                                    <input name="titleOfResearchProject" placeholder="Enter your title here...." class="form-control" type="text">

                                  </div>


                                  <div class="form-group">

                                    <label class="control-label">Intended use:</label>

                                    <select name="intendedUse" class="form-control" >

                                        <option value=" " >Please select one</option>

                                        <option>test1</option>

                                        <option>test2</option>

                                    </select>

                                </div>




                            </div>

                        </div>


                        <button class="btn btn-success" id="conceptsButton">Request Data</button>




                        </form>

                 </div>


        </div>

        <!-- /#page-wrapper -->

    </div><!-- /#wrapper -->




    <script type="text/javascript">

            //Initialize function when document 'is ready'

            $(document).ready(function() {

        //BEGIN FORM Validations

            $('#validateForm').bootstrapValidator({

          feedbackIcons: {

            valid: 'glyphicon glyphicon-ok',

            invalid: 'glyphicon glyphicon-remove',

            validating: 'glyphicon glyphicon-refresh'

        },

        fields: {


            patientSets: {

                validators: {

                    notEmpty: {

                        message: 'Please select a patient set'

                    }

                }

            },

            titleOfResearchProject: {

                validators: {

                    stringLength: {

                        min: 5,

                        message: 'Please Enter the title with minimum 5 letters length'

                    },

                    notEmpty: {

                        message: 'Please Enter title of your project'

                    }

                }

            },


            descriptionOfResearchProject: {

                validators: {

                    stringLength: {

                        min: 15,

                        max: 100,

                        message: 'Please enter at least 15 characters and no more than 100'

                    },

                    notEmpty: {

                        message: 'Please Enter Description'

                    }

                }

            },

            intendedUse: {

                validators: {

                    notEmpty: {

                        message: 'Please select one option'

                    }

                }

            },

        }

    });


            //END FORM Validations

    });

            //END FORM Validations

        </script>

    </body>

    </html>


查看完整回答
反对 回复 2022-08-04
?
郎朗坤

TA贡献1921条经验 获得超9个赞

这是因为您尝试在对象加载之前初始化验证程序。将脚本移到validateForm</body>



查看完整回答
反对 回复 2022-08-04
  • 2 回答
  • 0 关注
  • 112 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号