我正在使用this plugin。 有没有办法验证字数?
例如,在“firstname”中,不应允许任何空格。因此,验证标准就像这样=> maxwords = “1”
目前有什么办法吗?如果没有,我该怎么做才能实现这一目标。
由于
答案 0 :(得分:2)
使用the addMethod()
method创建自定义规则。
示例:
jQuery.validator.addMethod("maxwords", function(value, element, params) {
// your function to count words goes in here
// use any of these arguments in your function: value, element, params
// value => the present value of the field being tested
// element => the present field being tested
// params => the parameters passed in when you declare the rule.
// example: // maxwords: 1 // params[0] would be 1
// return true // if the field passes validation
// return false // if the field fails validation and the message below will display
}, "Please enter at least {0} words."));