4

我正在使用jquery validate 插件来验证表单中的数字,如何将返回的错误消息放在输入按钮下,我无法实现,

这是我的问题和我需要的图片,请检查 - http://i.imgur.com/Gt5aNxs.png

请建议我如何将错误消息放在按钮下的自定义 Div 中,而不是下面的默认值。

这是我的代码:

<section id="contact" class="content">
            <div class="container">
                <h2>Contact Form Demo</h2>
                <div class="row">
                    <div class="span12 contact-form">

                        <form action="mail.php" method="POST" class="form-horizontal contact-form" id="contact-form">
                          <!--<?php $formKey->outputKey(); ?> -->
                          <fieldset>  

                              <div class="control-group">
                                <label class="control-label" for="inputPhone">Phone</label>
                                <div class="controls">
                                  <input class="input-80" name="phone" type="text" id="inputPhone" placeholder="inc. country &amp; area code">
                                </div>
                              </div>


                              <div class="control-group">
                                <div class="controls">
                                  <button type="submit" value="Send" class="btn" id="btn-place">Send!</button>
                                </div>
                                <div >place here</div>
                              </div>
                            </fieldset>
                        </form>
                    </div>
                </div>
            </div>
        </section>

        <!-- javascript -->
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
        <script src="js/jquery.validate.min.js"></script>



        <script>

            // contact form validation
            $(document).ready(function(){

             $('#contact-form').validate(
                 {
                  rules: {
                    name: {
                      minlength: 3,
                      required: true
                    },
                    email: {
                      required: true,
                      email: true
                    },
                    phone: {
                      minlength: 11,
                      required: false,
                      number: true
                    },
                    subject: {
                      minlength: 3,
                      required: true
                    },
                    message: {
                      minlength: 20,
                      required: true
                    }
                  },
                            highlight: function(label) {
                    $(label).closest('.control-group').addClass('error');
                  },
                  success: function(label) {
                    label
                      .text('OK!').addClass('valid')
                      .closest('.control-group').addClass('success');
                  }
                 });

                // contact form submission, clear fields, return message,script no shown here

        </script>
4

2 回答 2

20

您需要做的就是在您的选项中指定errorLabelContainer并指定您希望错误进入的 div:

$('#contact-form').validate({
     //all your other options here
        errorLabelContainer: '#errors'
});

然后只需确保您指定您的place herediv 具有这样的 id errors

<div id="errors"></div>

在此处查看一个工作示例:http: //jsfiddle.net/ryleyb/aaEFQ/ (请注意,我还指定了该wrapper选项,如果有多个错误,您可能需要该选项)。

于 2013-06-25T20:44:21.923 回答
-1
errorPlacement: function(error, element) {
  if((element.attr('name') === 'color[]')){
    error.appendTo("div#errors");  
  }
  else if(element.attr('name') === 'font[]' ){
    error.appendTo("#font-error");  
  }
  else{
    element.before(error);
  }
}
于 2015-11-21T13:51:14.547 回答