设置minlength属性jQuery

时间:2011-10-04 15:29:16

标签: jquery

如何使用jQuery设置输入元素的minlength属性。它的要求是因为它会有所不同..有没有jQuery api这样做?

1 个答案:

答案 0 :(得分:0)

jQuery验证插件可以为您做到这一点

http://docs.jquery.com/Plugins/Validation/Methods/minlength

$("#myform").validate({
  rules: {
    field: {
      required: true,
      minlength: 3
    }
  }
})