在我的 aspx 中:
<td class="data"><%= Html.TextBoxFor(model => model.LastContainerStartDate)%></td>
其中 lastContainerStartDate 的数据类型为 DateTime
并且在
$(document).ready(function () {
$("#LastContainerSeqNum").numeric();
$("#LastContainerStartDate").mask("99/99/9999 99:99:99");
$("#LastContainerEndDate").mask("99/99/9999 99:99:99");
当页面加载时 => 仅加载具有完整掩码格式的日期
例如:2010 年 10 月 1 日加载正常。01/01/2010 带有空白字段
我怎样才能使我的第一个字符的掩码格式可选。