validate 的插件用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了validate 的插件用法相关的知识,希望对你有一定的参考价值。
1.不推荐使用控件方式验证的方式(因为他严重的影响的html代码,也不便于语义化)
<input type="text" class="required" minlength="2" name="user" id="user" />
2.推荐使用 JS 对象键值对传参方式设置
html代码:
<input type="text" name="user" id="user" />
js代码:
$(‘#reg‘).validate({ rules : { user : { //只有一个规则的话,user代表name的值 required : true, //直接 user : ‘required‘, minlength : 2, }, }, messages : { user : { required : ‘帐号不得为空!‘, minlength : ‘帐号不得小于 2 位!‘, }, } });
以上是关于validate 的插件用法的主要内容,如果未能解决你的问题,请参考以下文章
kafkaThe group member needs to have a valid member id before actually entering a consumer group(代码片段