点击验证表单,如果有效,则仅提交表单



我有一个html表单,我首先希望使用jQuery验证库jQuery.validate.min.js进行验证,如果表单有效,请将表单提交到某个位置。

我尝试了以下操作:

<html>
    <head>
        <link rel="stylesheet" href="../../common/view/css/bootstrap.min.css" type="text/css">
        <script src="../../common/view/js/jquery.js"></script>
        <script src="../../common/view/js/bootstrap.min.js"></script>
        <script src="../../common/view/js/jquery.validate.min.js"></script>
    </head>
    <body>
        <form method="post" action="stock-c.php" id="issueform" name="issueform">
            <input type="text" name="pid"/>
            <input type="button" name="button1" id="button1"/>
            <script type="text/javascript" src="js/issueValidation.js"></script>
            <!--Modal-->             
            <div id="myModal" class="modal fade" role="dialog">
                <div class="modal-dialog">
                     <!--info to be displayed-->
                     <input type="submit" value="submit"/> <!--Explain1-->
                </div>
            </div>

        </from>
    </body>
</html>

issueValidation.js

$( document ).ready( function () {          
$validator= $( "#issueform" ).validate( {
        rules: {
                pid: "required",
        },
        messages: {
                pid: "Please enter a value",
        },
        errorElement: "em",
        errorPlacement: function ( error, element ) {
                // Add the `help-block` class to the error element
                error.addClass( "help-block" );
                if ( element.prop( "type" ) === "checkbox" ) {
                        error.insertAfter( element.parent( "label" ) );
                } else {
                        error.insertAfter( element );
                }
        },
        highlight: function ( element, errorClass, validClass ) {
                $( element ).parents( ".col-sm-5" ).addClass( "has-error" ).removeClass( "has-success" );
        },
        unhighlight: function (element, errorClass, validClass) {
                $( element ).parents( ".col-sm-5" ).addClass( "has-success" ).removeClass( "has-error" );
        }
});
$('#button1').on('click', function() {
    $("#issueform").valid();    //everything works upto here
    if($validator.noOfInvalids()===0){     //this code doesn't work
        $('#myModal').modal('toggle');
    }
});
});

解释1:我将提交按钮放在表单标记中的模态类中,这样当单击时,表单数据就会被提交。

理想情况下,我希望在表单得到验证之前停止提交。如果表格有效,我必须能够在模态中查看我的表格数据,并单击其上的提交按钮,从而从提交开始。

我尝试使用jQuery验证插件中的submitHandler(只有在表单中没有无效项时才执行)来初始化模态,但要做到这一点,我需要将input[type="button"]更改为input[type="submit"],因为处理程序只在提交按钮上工作。然后,我在同一个表单中出现了两个提交按钮,表单无法正确提交。

请帮我纠正这个问题。作为回顾,我需要验证输入到表单中的数据,并请求用户以模式进行确认。如果用户以模态确认,则表单中的数据将被提交。如果我的方法是实现这一结果的不必要方法,那么只要符合上述要求,也欢迎其他建议。非常感谢。

理想情况下,我希望在表单得到验证之前停止提交。

这就是jQueryValidate插件已经在做的事情。

您的代码。。。

$('#button1').on('click', function() {
    $("#issueform").valid();    //everything works upto here
    if($validator.noOfInvalids()===0){     //this code doesn't work
        $('#myModal').modal('toggle');
    }
});

根据文档,.valid()还返回一个布尔值,因此上面代码的点击处理程序部分可以大大简化。。。

$('#button1').on('click', function() {
    if ($("#issueform").valid()) {
        // do something here when the form is valid
        $('#myModal').modal('toggle');
    }
});

我知道你已经提到了这一点,但以下是为了未来读者的利益:

请注意,仅当inputtype="button"时,才需要您的click处理程序。

或者,当使用type="submit"时,不需要click处理程序,因为点击是由插件自动捕获的。此外,在这种情况下,您将使用submitHandler选项来包含表单有效时要运行的任何代码。

相关内容

  • 没有找到相关文章

最新更新