我正在使用jQuery Validation
插件来验证表单.
问题是我无法找到验证表单中是否选中了单个复选框的方法
HTML标记:
<label for="terms">terms : </label>
<input type="checkBox" name="terms" id="terms">
jQuery代码:
rules: {
terms: "required"
},messages:{
terms: "check the checBox"
}
任何帮助,将不胜感激.
原文链接:https://www.f2er.com/jquery/157774.html