我正在一个插件中创建一个表单,用于在前端可见的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; }
所有工作正常但错误信息的位置对于错误重叠的三个列字段是错误的,如下图所示:
如何获得此效果(使用photoshop修改):
提前致谢。
答案 0 :(得分:4)
您的错误放置代码没有任何问题。您的大部分问题都是由无效的HTML和缺少规则引起的。 (我不会将table
用于form
布局...有更好,更现代的方法来进行此类布局。)
根本原因:
1)您在多个无效HTML元素上重复了id="tris"
并破坏了代码。具有重复id
的元素将被忽略。请改用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."
}
});
});
答案 1 :(得分: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/