jquery.validate.js 多个相同name的处理方式

1、将引入的插件:jquery.validate.js 第484行的代码注释:

// select only the first element for each name, and only those with rules specified   //if ( this.name in rulesCache || !validator.objectLength($(this).rules()) ) { return false; }

2、页面中需要验证的输入框必须加上不同的id。

如:html中:

<form>   <input type='text' val=''/>   <input type='text' val=''/> </form>

js:

 var $form=$('form'),validator=$form.validate();   $.extend(validator.settings,{     rules:{       "name":'required'     }   });

以上所述是小编给大家介绍的jquery.validate.js 多个相同name的处理方式,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyfyfw.html