仅当字段包含值
时,引导验证才会生效我想只使用我的bootstrap验证器
我在下面的代码中使用了bootstrap验证器
<tr>
<td><b>1</b></td>
<td>
<select class="form-control" name="DaySelection1">
<option value="">Select</option>
<option value="wed">Wed</option>
<option value="thu">Thu</option>
<option value="fri">Friday</option>
</select>
</td>
<td class="form-group">
<input type="text" class="form-control" name="digits1"
required
min="000"
data-bv-greaterthan-inclusive="true"
data-bv-greaterthan-message="The input must be greater than or equal to 0"
max="999"
data-bv-lessthan-inclusive="false"
data-bv-lessthan-message="The input must be less than or equal to 999" />
</td>
<td class="form-group"><input type="number" data-bv-digits-message="true" class="form-control" name="big1" id="name1" size="6"></td>
<td><input type="number" class="form-control" name="small1" size="6"></td>
</tr>
我只想在
的行上运行我的验证select class by the name "DaySelection" value is not ""
The name of each input is goes by e.g "digits$i", "big$i", "small$i"
其中$ i是
的整数1 to 10
识别输入类型的每一行
如何更改引导代码。
因为目前我有一个打印出相同字段的for循环,那些未填充的字段也完成了此验证,我只想验证获得DaySelection值的行
答案 0 :(得分:0)
我用
data-bv-threshold="1"
解决我的问题。