我有一个增值税注册号字段。我为它分配了 JQuery.InputMask 库中的掩码;
$("input.vatreg").inputmask("999-9999-99");
在淘汰赛中,我使用以下编辑模板;
<script id="editTmpl" type="text/html">
<tr>
<td><input data-bind="value: Name, hasFocus: addNew" /></td>
<td><input data-bind="value: VatRegistrationNumber" class="vatreg" /></td>
<td>
<button data-bind="click: $root.acceptItemEdit" style="margin-right:10px;">Accept and Save</button>
<button data-bind="click: $root.cancelItemEdit">Cancel</button>
</td>
</tr>
</script>
如您所见,这使用了 vatreg 类,我的期望是该字段会启用掩码,但事实并非如此。我该如何解决?