索引

2015-12-23 58 views
0

我使用Formvalidation.io插件Formvalidation.io和陣列輸入字段,這可以完美兼容索引

<input type="text" name="url[]" required /> 

用下面的驗證代碼

'url[]': { 
    validators: { 
     stringLength: { 
      min: 4 
     } 
    } 
}, 

但使用「預定時「index

<input type="text" name="url[1]" required /> 

以下驗證不起作用

'url[]': { 
    validators: { 
     stringLength: { 
      min: 4 
     } 
    } 
}, 

它工作在驗證代碼使用固定索引(見下面的代碼)

'url[1]': { 
    validators: { 
     stringLength: { 
      min: 4 
     } 
    } 
}, 

但是我動態添加字段具有未知指數。 因此,在驗證代碼中使用固定索引不是一個選項。

回答

1

我認爲你要找的答案在this頁面,然後是第二部分「不同名稱的輸入」。

在那裏,你可以在CSS類的您驗證正在躥

<fieldname>: { 
        //the input css class 
        selector: '<.cssClass>', 
        // The field is placed inside .col-xs-6 div instead of .form-group 
        row: '.col-xs-6', 
        validators: { 
         <your validator> 
        } 
       } 
+0

一段時間去過,但感謝!這很棒! – PostMans