标签: jquery jquery-validate
我的表单有很多字段,如何批量验证所有输入不能仅包含空格并输入关键字符 如果我通过addMethod,我需要写很多规则,没有通用的方法可以做得更好
addMethod
$.validator.addMethod("alpha", function(value, element) { return this.optional(element) || value == value.match(/[^\S\r\n]/); });