jquery-regexer
使用正则表达式验证表单元素的插件
用法
在文档就绪时注册功能
$ ( document ) . ready ( function ( ) {
$ ( '#form' ) . regexer ( ) ;
} ) ;
您可能希望像这样配置几个变量
$ ( document ) . ready ( function ( ) {
$ ( '#form' ) . regexer ( {
reqFieldMsg : 'This field is required' ,
incorrecFormatMsg : 'Incorrect Format' ,
errAlertMsg : 'There are validation errors in this step.' ,
exclude : 'button, .dont-v
1