您的 HTML 标记并不是真正“正确”的。您应该将data-abide-validator
属性附加到输入,而不是父 div。此外,您需要一些更好的标记,以便 abide 的默认错误显示可以正常工作(以及更好地使用基础的网格系统来进行布局)。我会向您指出 Zurb 网站上的Abide Validation Page以获取表单标记的一些示例。
我冒昧地将您的标记重组为更像是基础布局的东西:
<form action="/echo/html/" method="POST" data-abide>
<div class="row">
<div class="small-12 columns checkbox-group" data-abide-validator-limit="1,3">
<label>Check some boxes</label>
<small class="error">You have checked an invalid number of boxes.</small>
<ul class="small-block-grid-3">
<li>
<label>
<input type="checkbox" data-abide-validator="checkbox_limit" value="1" /> 1
</label>
</li>
<li>
<label>
<input type="checkbox" data-abide-validator="checkbox_limit" value="2" /> 2
</label>
</li>
<li>
<label>
<input type="checkbox" data-abide-validator="checkbox_limit" value="3" /> 3
</label>
</li>
<li>
<label>
<input type="checkbox" data-abide-validator="checkbox_limit" value="4" /> 4
</label>
</li>
<li>
<label>
<input type="checkbox" data-abide-validator="checkbox_limit" value="5" /> 5
</label>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="small-12 columns">
<button type="submit">Submit</button>
</div>
</div>
</form>
至于你的JS代码。也不正确。您需要解决选项的 abide -> validators 命名空间,而不仅仅是验证器。我已经重写了您的 JS 代码,不仅可以做到这一点,还可以提供您想要的效果:
$(document).foundation({
abide: {
validators: {
checkbox_limit: function(el, required, parent) {
var group = parent.closest( '.checkbox-group' );
var limit = group.attr('data-abide-validator-limit').split(',');
var countC = group.find(':checked').length;
if( countC >= limit[0] && countC <= limit[1] ) {
group.find('small.error').hide();
//return true so abide can clear any invalid flags on this element
return true;
} else {
group.find('small.error').css({display:'block'});
//return false and let abide do its thing to make sure the form doesn't submit
return false;
}
}
}
}
});
为了在进行自定义验证时检查相邻元素,您需要有一些目标。验证函数中的el
变量将是正在验证的输入/字段的 DOM 元素。该required
变量将告诉您该字段是否被标记为必需(布尔值)。该parent
变量将被设置为该字段的“父级”。我说“父级”是因为虽然label
标签在技术上是input
元素的父级,但 abide 足够聪明,可以意识到标签是字段元素结构的一部分,而是跳过它到li
元素。
从那里,您需要一种方法来识别共同的父母。因此,我将该checkbox-group
类添加到我决定将组中所有复选框设为“父级”的任何元素中。这不是 Foundation 或 Abide “魔术”类,而是我自己创建的用于验证功能的东西。
从那里,您可以轻松地跟踪验证函数的几行以查看工作流:查找组容器对象,解析容器data-abide-validator-limits
属性的限制,计算容器中检查输入的数量,检查检查的数量是否介于限制,显示/隐藏错误消息并返回真/假,所以坚持知道该字段是否有效。
如果您想自己检查一下,我有一个可用的 Fiddle;)希望这对您有所帮助,并祝您在玩 Foundation 时好运!