繁体   English   中英

验证之前关闭Bootstrap模式表单

[英]Bootstrap modal form closing before validation

我在这里使用示例来构建表单: http : //bootply.com/60244

我的JavaScript似乎没有被调用,因此,当我单击“保存更改”时,该表单将关闭。 任何想法将不胜感激

这是我的代码

    <!-- Modal -->
    <div class="modal hide fade" id="mailerModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
          <h3_pink id="myModalLabel">Request a Mailer Bag</h3_pink>
        </div>
        <div class="modal-body">
            <h3_pink> </h3>
            <form method="post" id="FormMailer" action="soon2.php">
                <input type="hidden" name="FormMailer" value="1">
                <table>
                    <tbody>
                        <tr><td>First Name</td><td><input type="text" name="contact_fname" id="contact_fname" style="width:90%"><span class="hide help-inline">This is required</span></td>
                        <td>Last Name</td><td><input type="text" name="contact_lname" id="contact_lname" placeholder="Last Name" style="width:90%"><span class="hide help-inline">This is required</span></td></tr>
                        <tr><td>Email Address</td><td colspan="3"><input type="text" name="contact_email" id="contact_email" placeholder="Email Address" style="width:90%"><span class="hide help-inline">This is required</span></td></tr>
                        <tr><td>Street1</td><td colspan="3"><input type="text" id="contact_street1" name="contact_street1" placeholder="Street" style="width:90%"><span class="hide help-inline">This is required</span></td></tr>
                        <tr><td>Street2</td><td colspan="3"><input type="text" id="contact_street2" name="contact_street2" placeholder="Street" style="width:90%"></td></tr>
                        <tr><td>City</td><td colspan="3"><input type="text" id="contact_city" name="contact_city" placeholder="City" style="width:90%"><span class="hide help-inline">This is required</span></td></tr>
                        <tr><td>Zip</td><td colspan="3"><input type="text" name="zip" id="zip" style="width:90%"><span class="hide help-inline">This is required</span></td></tr>
                        <tr><td>Message</td><td colspan="3"><textarea id="contact_message" name="contact_message" style="width:90%"></textarea></td></tr>
                    </tbody>
                </table>
            </form>
        </div><!-- /.modal-body -->
        <div class="modal-footer">
            <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
            <button class="btn btn-primary" data-dismiss="modal" id="FormMailerSubmit">Save changes</button>
        </div>
    </div><!-- /.modal -->
    <!-- Modal Ends -->

    <script src="https://code.jquery.com/jquery.js"></script>
    <script src="/soon/js/bootstrap.js"></script>
    <link rel="stylesheet" href="soon/styles/bootstrap.min.css" media="screen"  />
    <link rel="stylesheet" href="soon/styles/bootstrap-responsive.min.css" media="screen"  />
    <link rel="stylesheet" href="soon/styles/style.css"/>
    <link rel="stylesheet" href="soon/styles/style_responsive.css"/>

    <script type='text/javascript'>
        $(document).ready(function() {
            $('#FormMailerSubmit').click(function(){
            if ($('#contact_fname').val()==="") {
                  // invalid
                  $('#contact_fname').next('.help-inline').show();
                  return false;
                }
                else {
                  // $('#FormMailer').submit();

                  return true;
                }
            });
        });           
    </script>

由于按钮上的data-dismiss="modal"属性,其关闭。 删除它,它不会关闭。 如果您需要在JS中关闭它,则可以使用modal.modal('hide');

好,首先

  • 在所有按钮中指定类型-默认类型应为“ submit按钮,而不是普通按钮。

  • 您可能要在模式hide事件中进行验证。 如果数据无效,则从事件处理程序返回false ,并且该数据将不会关闭。 这只剩下一个小问题,那就是确定事件是来自关闭/取消按钮还是预定的提交按钮。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM