jquery验证errorPlacement

时间:2011-03-03 02:56:34

标签: jquery-validate

如何为不同的输入类型设置不同的展示位置?更具体地说,如果一个子标签有一个错误类,你如何添加另一个li?为了更清楚,我想指定对于fieldset“#SomeID”,错误元素在新的div / li / p中,无论它们的父输入如何。

<fieldset id="SomeID">
stuff
<div class="toggle"><input type="checkbox" name="BP" id="BP">I have read and agree to the Billing Policy above.</div>
<div class="toggle"><input type="checkbox" name="TA" id="TA">I have read and agree to the Terms and Agreement <a class="linkTA"><span>Learn More...</span></a></div>
</fieldset>

2 个答案:

答案 0 :(得分:0)

你是说这个吗?

 $("label.errorclass").append($("<li class='errmsg'>some error</li>"));

答案 1 :(得分:0)

我想你想选择带有错误类的li并使用$ .after在它之后直接插入一些html。

$('li.error_class').after('<li>some stuff here</li>');