我有一个表单的视图模型,我试图将验证添加到使用敲除验证。
<table data-bind='visible: slots().length > 0'>
<thead>
<tr>
<th>Start Time</th>
<th>End Time</th>
</tr>
</thead>
<tbody data-bind='foreach: slots'>
<tr>
<td><input type="text" class="input-medium time-picker" data-bind='value: start_time' required="true"/></td>
<td><input type="text" class="input-medium time-picker" data-bind='value: end_time' required="true"/></td>
<td><a href='#' data-bind='click: $root.removeSlot'><i class="icon-minus-sign"/></a></td>
</tr>
</tbody>
</table>
<button class="btn btn-primary" data-bind='click: addSlot'>Add Row</button>
我需要验证如果我在第 1 行输入“end_time”并且当我添加新行时,第 2 行的 start_time 必须大于第 1 行的 end_time。