本文介绍了是否需要jQuery Validate复选框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用jQuery Validation插件来验证表单。
I'm using jQuery Validation plugin to validate a form.
问题是我无法找到验证表单中是否有单个复选框的方法已选中
The problem is that I can't find a way to validate if a single checkbox in my form is checked
HTML标记:
<label for="terms">terms : </label>
<input type="checkbox" name="terms" id="terms">
jQuery代码:
rules: {
terms: "required"
},
messages:{
terms: "check the checbox"
}
任何帮助都将不胜感激。
Any help would be appreciated.
推荐答案
也许你的复选框有css样式
Maybe your checkbox has css style
display: none
将其替换为
visibility: hidden;
width: 0;
这对我有帮助。
这篇关于是否需要jQuery Validate复选框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!