jQuery Validator最小必需字

时间:2013-10-07 20:15:49

标签: javascript jquery jquery-validate

我正在寻找一种使用jQuery验证一些输入textareas的方法 - 不幸的是,jQuery验证器插件非常棒,它缺乏验证(据我所知)“最低要求的单词”。我没有代码(我早上会编辑),但是我编写了一个函数来计算输入中的单词,但这不是像插件提供的那样干净的验证。

我也查看了word-and-character-count.js,但是为了提交表单,这也没有提供最小字数。

编辑:我提供的答案是一个自定义验证方法 - 如果有人知道任何更干净的方法或甚至一个易于使用的插件,请告诉我。

1 个答案:

答案 0 :(得分:9)

获取实时字数的功能,不包括末尾的空格(简单地分割将计算为word(注意末尾的空格)为2个字。

function getWordCount(wordString) {
  var words = wordString.split(" ");
  words = words.filter(function(words) { 
    return words.length > 0
  }).length;
  return words;
}

//add the custom validation method
jQuery.validator.addMethod("wordCount",
   function(value, element, params) {
      var count = getWordCount(value);
      if(count >= params[0]) {
         return true;
      }
   },
   jQuery.validator.format("A minimum of {0} words is required here.")
);

//call the validator
selector:
{
    required: true,
    wordCount: ['30']
}