欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-09-09 12:01:02
1、将引入的插件:jquery.validate.js 第484行的代码注释: // select only the first element for each...

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' name='name' id='name1' val=''/>
  <input type='text' name='name' id='name2' val=''/>
</form>

      js:

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

以上所述是小编给大家介绍的jquery.validate.js 多个相同name的处理方式,希望对大家有所帮助