javascript – 需要jQuery Validate复选框吗?

前端之家收集整理的这篇文章主要介绍了javascript – 需要jQuery Validate复选框吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用jQuery Validation插件来验证表单.

问题是我无法找到验证表单中是否选中了单个复选框的方法

HTML标记

<label for="terms">terms : </label>
<input type="checkBox" name="terms" id="terms">

jQuery代码

rules: {
    terms: "required"
},messages:{
    terms: "check the checBox"
}

任何帮助,将不胜感激.

解决方法

HTML标记
<label for="terms">terms : </label>
  <input type="checkBox" name="terms" value="1" id="terms">

jQuery代码

rules: {
      terms: {
         required : true
      }

  },messages:{
      terms: {
        required : "check the checBox"
      }
  }

jsfiddle:http://jsfiddle.net/mZ6zJ/

原文链接:https://www.f2er.com/jquery/157774.html

猜你在找的jQuery相关文章