2

我正在为前端可见的 wordpress 插件创建一个表单。使用 JQuery 验证方法,我在将每个错误准确定位在每个字段下时遇到问题。

所以这是我的脚本:

function validate_init() { ?>
<script type="text/javascript">
    jQuery(document).ready(function($) {
        $('#form_register').validate({
            rules: {
                ragsoc: {
                    required: true,
                    minlength: 2
                },

                piva: {
                    required: true,
                    digits: true,
                },

                gruppo: {
                    required: true,
                },
            },

            messages: {
                ragsoc: "Inserire la ragione sociale.",
                piva: "Solo numeri accettati.",
                gruppo: "inserire un valore.",
            },
            errorElement: "div",
            errorPlacement: function(error, element) {
                error.insertAfter(element);
            },
        });
    });
</script>
    <?php }
    add_action('wp_footer', 'validate_init', 999);

这是我的表格:

<?php echo '<form id="form_register" method="post" action="'.$pluginfolder.'/submit.php">'; ?>
  <table width="100%" border="0" cellspacing="0" cellpadding="5">
    <tr>
      <td colspan="3"><label for="ragsoc">Ragione sociale *</label>
      <input type="text" name="ragsoc" id="long" /></td>
    </tr>
    <tr>
      <td><label for="piva">Partita Iva *</label>
      <input type="text" name="piva" id="tris" /></td>
      <td><label for="codfisc">Codice Fiscale</label>
      <input type="text" name="codfisc" id="tris" /></td>
      <td><label for="gruppo">Gruppo</label>
      <input type="text" name="gruppo" id="tris" /></td>
    </tr>
    <tr>
        <td>
            <label for="codice">Codice</label>
            <input type="text" name="codice" id="tris" />
        </td>
        <td>
            <label for="insegna">Insegna *</label>
            <select id="tris" name="insegna">
                <option value=""><em>Scegli...</em></option>
                <option value="option_1">option_1</option>
                <option value="option_2">option_2</option>
            </select>
        </td>
        <td>
            <label for="rapporto">Rapporto *</label>
            <select id="tris" name="rapporto">
                <option value=""><em>Scegli...</em></option>
                <option value="option_1">option_1</option>
                <option value="option_2">option_2</option>
                <option value="option_3">option_3</option>                
            </select>
        </td>
    </tr>
    <tr>
      <td colspan="2"><input type="submit" name="button" id="button" value="Invia" />
      <input type="reset" name="button2" id="button2" value="Cancella" />
    </tr>
  </table>
  </form>

最后这是我的CSS:

div.error{
color: #f33;
padding: 0;
margin: 2px 0 0 0;
font-size: 0.7em;
padding-left: 18px;
background-image: url('error.png');
background-position: 0 0;
background-repeat: no-repeat; }

一切正常,但错误消息的位置对于错误重叠的三列字段是错误的,如下图所示:

http://i.stack.imgur.com/HzshN.jpg

我怎样才能获得这种效果(用photoshop修改):

http://i.stack.imgur.com/Q3MiU.jpg

提前致谢。

4

2 回答 2

4

您的错误放置代码没有任何问题。您的大部分问题是由无效的 HTML 和缺少规则引起的。(我不会将 atable用于form布局......有更好、更现代的方式来做这样的布局。


根本原因:

1) 您重复id="tris"了多个无效 HTML 元素并破坏了代码。带有重复id's 的元素将被忽略。改为使用class

2) 您未能为这四个附加字段定义任何规则。因此,当然,任何地方都不会显示任何错误。


修复的好主意:

3) 删除所有尾随逗号。尽管这只会破坏旧版本 Internet Explorer 中的代码,但留下逗号是一种草率的编码习惯。

4) 您在</td>最后<tr></tr>一个table.

5)如果是其中唯一的代码,则 不需要指定自定义errorPlacement回调函数。error.insertAfter(element)由于这只是插件的默认代码,因此可以errorPlacement从插件选项中删除。


工作演示:http: //jsfiddle.net/9bRXd/

jQuery(document).ready(function ($) {

    $('#form_register').validate({
        rules: {
            ragsoc: {
                required: true,
                minlength: 2
            },
            piva: {
                required: true,
                digits: true
            },
            codfisc: {
                required: true
            },
            gruppo: {
                required: true
            },
            insegna: {
                required: true
            },
            rapporto: {
                required: true
            }
        },
        errorElement: "div",
        messages: {
            ragsoc: "Inserire la ragione sociale.",
            piva: "Solo numeri accettati.",
            gruppo: "inserire un valore."
        }
    });

});
于 2013-02-26T22:25:23.610 回答
1

如果您在 jsFiddle 上发布一个示例,但只需查看我建议的代码,就会更容易弄清楚。

errorPlacement: function(error, element) 
                {
                  error.insertAfter(element);

                  // Use jQuery UI's position function to get placement correct
                  error.position ( {
                                     my: 'left top',
                                     at: 'left bottom',
                                     of: element
                                   } );
                }

这假设您有 jQuery UI 以及 jQuery Validation 插件。您可能必须使用错误的 CSS 才能使其看起来完全符合您的要求。

这是位置的api:http: //api.jqueryui.com/position/

于 2013-02-26T19:07:39.223 回答